diff options
Diffstat (limited to 'ui.qt/source/qml/MainWindow.qml')
-rw-r--r-- | ui.qt/source/qml/MainWindow.qml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ui.qt/source/qml/MainWindow.qml b/ui.qt/source/qml/MainWindow.qml index 905f0e8..d81fb4f 100644 --- a/ui.qt/source/qml/MainWindow.qml +++ b/ui.qt/source/qml/MainWindow.qml @@ -6,7 +6,16 @@ Window { visible: true title: qsTr("Hello World") + Navigator { + id: navigator + width: childrenRect.width + height: parent.height + } + Document { - id: doc + id: document + height: parent.height + anchors.left: navigator.right + anchors.right: parent.right } } |