Merge pull request #1762

b9c7d8d keys: dynamic panel height and qrcode is no longer clipped (mmbyday)
pull/2/head
luigi1111 6 years ago
commit dcddaad2be
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -150,7 +150,7 @@ Rectangle {
}, State {
name: "Keys"
PropertyChanges { target: root; currentView: keysView }
PropertyChanges { target: mainFlickable; contentHeight: minHeight + 200 * scaleRatio }
PropertyChanges { target: mainFlickable; contentHeight: keysView.keysHeight }
}
]

@ -40,6 +40,7 @@ import "." 1.0
Rectangle {
property bool viewOnly: false
id: page
property int keysHeight: mainLayout.height + 100 * scaleRatio // Ensure sufficient height for QR code, even in minimum width window case.
color: "transparent"