diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-05-22 11:31:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-22 11:31:05 +0200 |
| commit | 7997e6aaf42c91b18f997731ef2d35babf834a08 (patch) | |
| tree | ab432a4cc896098b15354ec35767e60b9101a6b4 | |
| parent | 937cb9825672d07a1917d2d9daf823802ec31d1b (diff) | |
| download | monzero-gui-7997e6aaf42c91b18f997731ef2d35babf834a08.tar.gz monzero-gui-7997e6aaf42c91b18f997731ef2d35babf834a08.tar.xz monzero-gui-7997e6aaf42c91b18f997731ef2d35babf834a08.zip | |
AddressBook: highlight background when selecting contact for transfer page
| -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 7d28ba02..906bb394 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(); |
