Limit max height.
This commit is contained in:
@@ -13,8 +13,8 @@ Dialog {
|
||||
property var room
|
||||
|
||||
anchors.centerIn: parent
|
||||
width: 480
|
||||
height: window.height - 100
|
||||
width: 360
|
||||
height: Math.min(window.height - 100, 640)
|
||||
|
||||
id: root
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ Dialog {
|
||||
|
||||
anchors.centerIn: parent
|
||||
width: 480
|
||||
height: window.height - 100
|
||||
height: Math.min(window.height - 100, 800)
|
||||
|
||||
id: root
|
||||
|
||||
|
||||
@@ -13,8 +13,8 @@ Dialog {
|
||||
property var connection
|
||||
|
||||
anchors.centerIn: parent
|
||||
width: 480
|
||||
height: window.height - 100
|
||||
width: 360
|
||||
height: Math.min(window.height - 100, 640)
|
||||
|
||||
id: root
|
||||
|
||||
|
||||
Reference in New Issue
Block a user