mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
Merge pull request #3496
7997e6a
AddressBook: highlight background when selecting contact for transfer page (rating89us)
This commit is contained in:
commit
416979cdbd
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue