From 234fd1bcda58b33e187dfa17894b7b26c52d7727 Mon Sep 17 00:00:00 2001 From: Jaquee Date: Mon, 21 Aug 2017 08:49:51 +0200 Subject: [PATCH] fix clipped height --- MiddlePanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MiddlePanel.qml b/MiddlePanel.qml index b51b391d..404a9d40 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -47,7 +47,7 @@ Rectangle { property string balanceText property string unlockedBalanceLabelText: qsTr("Unlocked Balance") + translationManager.emptyString property string unlockedBalanceText - property int minHeight: 800 + property int minHeight: (appWindow.height > 800) ? appWindow.height : 800 // property int headerHeight: header.height property Transfer transferView: Transfer { }