From 5360d2c231941076a1072b6628ce1cc6e16ddf90 Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Sat, 18 Nov 2017 16:21:32 +0100 Subject: [PATCH] Smaller menubutton height for small screens --- components/MenuButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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