diff options
Diffstat (limited to 'app/Phone.qml')
-rw-r--r-- | app/Phone.qml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/Phone.qml b/app/Phone.qml index 6ce503c..9ef99af 100644 --- a/app/Phone.qml +++ b/app/Phone.qml @@ -19,6 +19,8 @@ import QtQuick 2.6 import QtQuick.Layouts 1.3 import QtQuick.Controls 2.0 +import QtQuick.Window 2.13 + ApplicationWindow { id: root @@ -28,9 +30,10 @@ ApplicationWindow { Item { id: container anchors.centerIn: parent - width: 1080 - height: 1487 - scale: screenInfo.scale_factor() + width: Screen.width + height: Screen.height + //scale: screenInfo.scale_factor() + scale: 1 TabBar { id: bar |