mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-04 03:56:26 +00:00
Merge pull request #1762
b9c7d8d
keys: dynamic panel height and qrcode is no longer clipped (mmbyday)
This commit is contained in:
commit
dcddaad2be
2 changed files with 2 additions and 1 deletions
|
@ -150,7 +150,7 @@ Rectangle {
|
||||||
}, State {
|
}, State {
|
||||||
name: "Keys"
|
name: "Keys"
|
||||||
PropertyChanges { target: root; currentView: keysView }
|
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 {
|
Rectangle {
|
||||||
property bool viewOnly: false
|
property bool viewOnly: false
|
||||||
id: page
|
id: page
|
||||||
|
property int keysHeight: mainLayout.height + 100 * scaleRatio // Ensure sufficient height for QR code, even in minimum width window case.
|
||||||
|
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue