diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-02-27 22:30:01 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-02-27 22:30:01 +0200 |
| commit | 86a387046f5b3aa0b561e6c8a23b786d849f4646 (patch) | |
| tree | f11be23a32be1c099011d04a8193c05c8f0b5e87 | |
| parent | 75bb620cb6257d946e578ed2eda71d57c6796af1 (diff) | |
| parent | 1f1aa9859b143f9a7c7c636a087916e251c3dc02 (diff) | |
| download | monzero-gui-86a387046f5b3aa0b561e6c8a23b786d849f4646.tar.gz monzero-gui-86a387046f5b3aa0b561e6c8a23b786d849f4646.tar.xz monzero-gui-86a387046f5b3aa0b561e6c8a23b786d849f4646.zip | |
Merge pull request #493
1f1aa98 Notifier: make this look nicer (moneromooo.monero)
| -rw-r--r-- | components/Notifier.qml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/components/Notifier.qml b/components/Notifier.qml index ed380945..8edc71e5 100644 --- a/components/Notifier.qml +++ b/components/Notifier.qml @@ -36,11 +36,9 @@ Item { property bool active: false height: 120 width: 240 - x: parent.width - width - y: parent.height - height * scale.yScale - anchors.margins:15 - anchors.bottom: parent.bottom - anchors.right: parent.right + property int margin: 15 + x: parent.width - width - margin + y: parent.height - height * scale.yScale - margin * scale.yScale Rectangle { color: "#FF6C3C" |
