aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrating89us <45968869+rating89us@users.noreply.github.com>2021-06-02 16:38:11 +0200
committerrating89us <rating89us@rating89us.com>2021-06-02 19:09:31 +0200
commit0775b529c4b6ba56d86f396f95291fb9eddb24b8 (patch)
treec1f5833c54cb2564df520ee9879aee10e47fd81d
parent2946127ed791ef8dd6dc430b681a14cd5bd2d71e (diff)
downloadmonzero-gui-0775b529c4b6ba56d86f396f95291fb9eddb24b8.tar.gz
monzero-gui-0775b529c4b6ba56d86f396f95291fb9eddb24b8.tar.xz
monzero-gui-0775b529c4b6ba56d86f396f95291fb9eddb24b8.zip
History: clean search bar inline button
-rw-r--r--pages/History.qml19
1 files changed, 17 insertions, 2 deletions
diff --git a/pages/History.qml b/pages/History.qml
index 03d30c5e..0fb03b7b 100644
--- a/pages/History.qml
+++ b/pages/History.qml
@@ -154,10 +154,10 @@ Rectangle {
Layout.fillWidth: true
input.topPadding: 6
input.bottomPadding: 6
- fontSize: 16
+ fontSize: 15
labelFontSize: 14
placeholderText: qsTr("Search by Transaction ID, Address, Description, Amount or Blockheight") + translationManager.emptyString
- placeholderFontSize: 16
+ placeholderFontSize: 15
inputHeight: 34
onTextUpdated: {
if(searchInput.text != null && searchInput.text.length >= 3){
@@ -170,6 +170,21 @@ Rectangle {
root.updateFilter();
}
}
+
+ MoneroComponents.InlineButton {
+ Layout.topMargin: -8
+ Layout.rightMargin: -8
+ Layout.leftMargin: -2
+ buttonColor: "transparent"
+ fontFamily: FontAwesome.fontFamilySolid
+ fontStyleName: "Solid"
+ fontPixelSize: 18
+ text: FontAwesome.times
+ tooltip: qsTr("Clean") + translationManager.emptyString
+ tooltipLeft: true
+ visible: searchInput.text != ""
+ onClicked: searchInput.text = ""
+ }
}
}