diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-08-07 15:47:56 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-11-03 16:57:11 +0100 |
| commit | 9e0db8f4ffa7d979ffb07cd9d76aee885c261196 (patch) | |
| tree | cd8846ccc546cb6328de47695411d89f679df79b /components/TitleBar.qml | |
| parent | 66bb3fe7ac2b4e890ae7b89931f537bbfea1dd46 (diff) | |
| download | monzero-gui-9e0db8f4ffa7d979ffb07cd9d76aee885c261196.tar.gz monzero-gui-9e0db8f4ffa7d979ffb07cd9d76aee885c261196.tar.xz monzero-gui-9e0db8f4ffa7d979ffb07cd9d76aee885c261196.zip | |
components mobile scaling
Diffstat (limited to 'components/TitleBar.qml')
| -rw-r--r-- | components/TitleBar.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/TitleBar.qml b/components/TitleBar.qml index 34f25e73..8f147322 100644 --- a/components/TitleBar.qml +++ b/components/TitleBar.qml @@ -37,7 +37,7 @@ Rectangle { property alias basicButtonVisible: goToBasicVersionButton.visible property bool customDecorations: true signal goToBasicVersion(bool yes) - height: customDecorations ? 30 : 0 + height: customDecorations && !isMobile ? 30 : 0 y: -height property string title property alias maximizeButtonVisible: maximizeButton.visible @@ -59,7 +59,7 @@ Rectangle { anchors.top: parent.top anchors.left: parent.left color: basicMouseArea.containsMouse || !leftPanel.visible ? "#FFE00A" : "#000000" - height: 30 + height: 30 * scaleRatio width: height visible: isMobile |
