diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2017-11-18 16:21:32 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:00 +0100 |
| commit | 5360d2c231941076a1072b6628ce1cc6e16ddf90 (patch) | |
| tree | 98595c10fbe10d38b7d23063430011c4cff04950 /components/MenuButton.qml | |
| parent | 9462899e97bb9057bb0205bb33413710d616a38c (diff) | |
| download | monzero-gui-5360d2c231941076a1072b6628ce1cc6e16ddf90.tar.gz monzero-gui-5360d2c231941076a1072b6628ce1cc6e16ddf90.tar.xz monzero-gui-5360d2c231941076a1072b6628ce1cc6e16ddf90.zip | |
Smaller menubutton height for small screens
Diffstat (limited to 'components/MenuButton.qml')
| -rw-r--r-- | components/MenuButton.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/MenuButton.qml b/components/MenuButton.qml index 319170b4..4321d248 100644 --- a/components/MenuButton.qml +++ b/components/MenuButton.qml @@ -59,7 +59,7 @@ Rectangle { color: "black" property bool present: !under || under.checked || checked || under.numSelectedChildren > 0 - height: present ? ((appWindow.height >= 800) ? 44 * scaleRatio : 52 * scaleRatio ) : 0 + height: present ? ((appWindow.height >= 800) ? 44 * scaleRatio : 38 * scaleRatio ) : 0 // Button gradient whilst checked // @TODO: replace by .png - gradient not available in 2d renderer |
