aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-26 11:10:13 +0000
committermoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-26 11:10:13 +0000
commitfd55cd94ed0662733e0e449f3db58f3acb22f438 (patch)
tree920e200b92d84bf1c343d1bc18222a89017e3a28
parent26abdee5c47017a80117b1bed5ee36586a240c62 (diff)
downloadmonzero-gui-fd55cd94ed0662733e0e449f3db58f3acb22f438.tar.gz
monzero-gui-fd55cd94ed0662733e0e449f3db58f3acb22f438.tar.xz
monzero-gui-fd55cd94ed0662733e0e449f3db58f3acb22f438.zip
History: reclaim some vertical space from search label
-rw-r--r--pages/History.qml16
1 files changed, 2 insertions, 14 deletions
diff --git a/pages/History.qml b/pages/History.qml
index c6f94dd4..5e1be50c 100644
--- a/pages/History.qml
+++ b/pages/History.qml
@@ -171,27 +171,15 @@ Rectangle {
*/
// Filter by string
-
- Label {
- id: searchLabel
- anchors.left: parent.left
- anchors.top: filterHeaderText.bottom // addressLine.bottom
- anchors.leftMargin: 17
- anchors.topMargin: 17
- text: qsTr("Incremental search") + translationManager.emptyString
- fontSize: 14
- tipText: qsTr("Search transfers for a given string") + translationManager.emptyString
- }
-
LineEdit {
id: searchLine
anchors.left: parent.left
anchors.right: parent.right
- anchors.top: searchLabel.bottom // addressLabel.bottom
+ anchors.top: filterHeaderText.bottom
anchors.leftMargin: 17
anchors.rightMargin: 17
anchors.topMargin: 5
- placeholderText: qsTr("Type search string") + translationManager.emptyString
+ placeholderText: qsTr("Type for incremental search...") + translationManager.emptyString
onTextChanged: {
model.searchFilter = searchLine.text
selectedAmount.text = getSelectedAmount()