diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-06-01 01:38:45 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-06-01 01:38:45 -0500 |
| commit | 416979cdbdac708b7fd55c585979a2f415ff479a (patch) | |
| tree | 5903a5c0d0f69630d41b3c6e81d678ff86af980b | |
| parent | 1442215ce542ee8aafdba4862e3cb8886bda7f8d (diff) | |
| parent | 7997e6aaf42c91b18f997731ef2d35babf834a08 (diff) | |
| download | monzero-gui-416979cdbdac708b7fd55c585979a2f415ff479a.tar.gz monzero-gui-416979cdbdac708b7fd55c585979a2f415ff479a.tar.xz monzero-gui-416979cdbdac708b7fd55c585979a2f415ff479a.zip | |
Merge pull request #3496
7997e6a AddressBook: highlight background when selecting contact for transfer page (rating89us)
| -rw-r--r-- | pages/AddressBook.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/AddressBook.qml b/pages/AddressBook.qml index 275a5a93..8ea97662 100644 --- a/pages/AddressBook.qml +++ b/pages/AddressBook.qml @@ -134,7 +134,7 @@ Rectangle { height: addressBookListRow.addressBookListItemHeight width: parent ? parent.width : undefined Layout.fillWidth: true - color: "transparent" + color: itemMouseArea.containsMouse ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent" function doSend() { console.log("Sending to: ", address +" "+ paymentId); @@ -187,8 +187,10 @@ Rectangle { } MouseArea { + id: itemMouseArea anchors.fill: parent cursorShape: Qt.PointingHandCursor + hoverEnabled: true visible: root.selectAndSend onClicked: { doSend(); |
