diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-06-10 10:22:52 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-06-10 10:22:52 -0500 |
| commit | b22fc4266c5807ae342f0d1ccc4f17f32a7a9edf (patch) | |
| tree | 5add9a562a3a4b273a523f4d5ca3f3efb28a1734 /components | |
| parent | 2290e7e762ad62a00ee9959888adb0cad12c41fc (diff) | |
| parent | f06d6e067f60a7c4626dbdf388556d6c55b5e9ee (diff) | |
| download | monzero-gui-b22fc4266c5807ae342f0d1ccc4f17f32a7a9edf.tar.gz monzero-gui-b22fc4266c5807ae342f0d1ccc4f17f32a7a9edf.tar.xz monzero-gui-b22fc4266c5807ae342f0d1ccc4f17f32a7a9edf.zip | |
Merge pull request #3528
f06d6e0 Transfer: add XMR unit on transactions with a single recipient; move 'send all' button next to Amount label (rating89us)
Diffstat (limited to 'components')
| -rw-r--r-- | components/InlineButton.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/InlineButton.qml b/components/InlineButton.qml index 8e0d278b..09d3aadf 100644 --- a/components/InlineButton.qml +++ b/components/InlineButton.qml @@ -95,7 +95,10 @@ Item { cursorShape: rect.enabled ? Qt.PointingHandCursor : Qt.ArrowCursor hoverEnabled: true anchors.fill: parent - onClicked: doClick() + onClicked: { + tooltip.text ? tooltip.tooltipPopup.close() : "" + doClick() + } onEntered: { tooltip.text ? tooltip.tooltipPopup.open() : "" rect.color = buttonColor ? buttonColor : "#707070"; |
