1
mirror of https://github.com/monero-project/monero-gui synced 2025-01-01 21:56:23 +01:00

Merge pull request #1762

b9c7d8d keys: dynamic panel height and qrcode is no longer clipped (mmbyday)
This commit is contained in:
luigi1111 2018-12-01 12:59:34 -06:00
commit dcddaad2be
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
2 changed files with 2 additions and 1 deletions

View File

@ -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 }
}
]

View File

@ -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"