Better default size for ApplicationWindow
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
import QtQuick 2.7
|
||||
import QtQuick.Controls 2.2
|
||||
import QtQuick.Window 2.7
|
||||
|
||||
ApplicationWindow {
|
||||
visible: true
|
||||
width: 640
|
||||
height: 700
|
||||
width: Math.min(Screen.width, 1152)
|
||||
height: Math.min(Screen.height, 768)
|
||||
|
||||
Loader {
|
||||
anchors.fill: parent
|
||||
|
Reference in New Issue
Block a user