2
0
mirror of synced 2025-02-08 12:45:14 +00:00

chore(sandbox): make app wider due to minimum layout width

There have been minimum layout widths introduced lately which break the
sandbox app's UI. This commit makes it wider by default so this doesn't happen
This commit is contained in:
Pascal Precht 2021-07-26 15:13:04 +02:00
parent 762ff87bcc
commit e71bd45c55
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import StatusQ.Popups 0.1
Rectangle { Rectangle {
id: demoApp id: demoApp
height: 602 height: 602
width: 902 width: 1002
border.width: 1 border.width: 1
border.color: Theme.palette.baseColor2 border.color: Theme.palette.baseColor2

View File

@ -15,7 +15,7 @@ import StatusQ.Platform 0.1
StatusWindow { StatusWindow {
id: rootWindow id: rootWindow
width: Qt.platform.os == "ios" || Qt.platform.os == "android" ? Screen.width width: Qt.platform.os == "ios" || Qt.platform.os == "android" ? Screen.width
: 1024 : 1224
height: Qt.platform.os == "ios" || Qt.platform.os == "android" ? Screen.height height: Qt.platform.os == "ios" || Qt.platform.os == "android" ? Screen.height
:840 :840
visible: true visible: true