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