From 9018ae3afe5f934c65a3e3c5be15e519ea4f5a92 Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Sat, 28 Apr 2018 02:50:22 +0200 Subject: [PATCH] Dynamic page height for the receive page --- MiddlePanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MiddlePanel.qml b/MiddlePanel.qml index 73cae42a..6101b28d 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -121,7 +121,7 @@ Rectangle { }, State { name: "Receive" PropertyChanges { target: root; currentView: receiveView } - PropertyChanges { target: mainFlickable; contentHeight: 1000 * scaleRatio } + PropertyChanges { target: mainFlickable; contentHeight: receiveView.receiveHeight + 100 } }, State { name: "TxKey" PropertyChanges { target: root; currentView: txkeyView }