aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-09-24 17:48:33 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2015-09-24 17:48:33 -0300
commit56c9ebb2e41bd0487199ed95838cd9e1c1d9dd8d (patch)
tree22a05cbba90350fa99665cf71036f035c8e7dbc6 /main_view.qml
parent815e94416bdf6bdd012e744c359f0b086da6b6af (diff)
Added placeholder object for history graph; smaller main window.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/main_view.qml b/main_view.qml
index 9eea63e..4c349f9 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -8,7 +8,7 @@ import PM 1.0
ApplicationWindow {
title: "Projection Manipulation"
visible: true
- width: 1200
+ width: 900
height: 600
menuBar: MenuBar {
@@ -81,7 +81,11 @@ ApplicationWindow {
Layout.fillWidth: true
Layout.minimumHeight: 150
- // ...
+ HistoryGraph {
+ id: history
+ objectName: "history"
+ anchors.fill: parent
+ }
}
}