diff options
author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-27 10:57:41 +0800 |
---|---|---|
committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-27 10:57:41 +0800 |
commit | eab46365359fb1846b16fa33cfe71593da05cb15 (patch) | |
tree | 5704395d2de63c67f2bba77e65cc40b1b4fa3017 /main.qml | |
parent | 0ced5545b7053ea6d77c0191e5732e36f7737467 (diff) | |
parent | 66ae26cf69793e89c95b73f0488a3da4fb7394c7 (diff) |
Merge branch 'curl' into development
Diffstat (limited to 'main.qml')
-rw-r--r-- | main.qml | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -2,13 +2,17 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 ApplicationWindow { - id: appWindow - width: 360 - height: 640 - visible: true - - StackView { - id: stackView - initialItem: Login {} - } + id: appWindow + width: 362 + height: 628 + visible: true + + StackView { + id: stackView + width: 362 + height: 628 + + initialItem: Login {} + } + } |