aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-05-03 12:46:42 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-05-03 12:46:42 -0500
commit34e46eda64d4c4253ba2ca632db9eddecd84c1a7 (patch)
treef5ddd051fbb6289eb6c4d8b3e90835f0aaddf804 /components
parentfc4ae890399aba29e41fad6e3cfdafd993442494 (diff)
parent171e1fc023c0e895a068422930a0d58d6f9afc86 (diff)
downloadmonzero-gui-34e46eda64d4c4253ba2ca632db9eddecd84c1a7.tar.gz
monzero-gui-34e46eda64d4c4253ba2ca632db9eddecd84c1a7.tar.xz
monzero-gui-34e46eda64d4c4253ba2ca632db9eddecd84c1a7.zip
Merge pull request #2100
171e1fc Fix checking for gui updates (mmbyday)
Diffstat (limited to 'components')
-rw-r--r--components/Notifier.qml10
1 files changed, 6 insertions, 4 deletions
diff --git a/components/Notifier.qml b/components/Notifier.qml
index 1e842e84..127de390 100644
--- a/components/Notifier.qml
+++ b/components/Notifier.qml
@@ -29,13 +29,14 @@
import QtQuick 2.9
import QtQuick.Controls 1.4
import moneroComponents.Wallet 1.0
+import "." as MoneroComponents
Item {
id: item
property string message: ""
property bool active: false
- height: 120
- width: 240
+ height: 180
+ width: 320
property int margin: 15
x: parent.width - width - margin
y: parent.height - height * scale.yScale - margin * scale.yScale
@@ -51,11 +52,12 @@ Item {
backgroundVisible: false
textFormat: TextEdit.AutoText
anchors.fill: parent
- font.family: "Arial"
+ font.family: MoneroComponents.Style.fontRegular.name
font.pixelSize: 12
textMargin: 20
textColor: "white"
text: item.message
+ wrapMode: Text.WrapAnywhere
}
}
@@ -70,7 +72,7 @@ Item {
Timer {
id: hider
- interval: 12000; running: false; repeat: false
+ interval: 30000; running: false; repeat: false
onTriggered: { item.active = false }
}