summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-12 22:57:47 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-12 22:57:47 +0800
commit35217b3a6e1794814881d25f1e440232eac23b71 (patch)
treebc0b31aaefd680862ac35397a0cfebfc568d1161 /pages
parent94bdca1ca59026e40c9dfe6d88cc84bc57b310a8 (diff)
Tidy up a bit
Diffstat (limited to 'pages')
-rw-r--r--pages/Home.qml7
-rw-r--r--pages/TaskList.qml2
2 files changed, 1 insertions, 8 deletions
diff --git a/pages/Home.qml b/pages/Home.qml
index de25068..533b1b8 100644
--- a/pages/Home.qml
+++ b/pages/Home.qml
@@ -3,10 +3,5 @@ import QtQuick 2.12
HomeForm {
width: stackView.width
height: stackView.height
-
- menuButton {
- onClicked: {
- drawer.visible = !drawer.visible
- }
- }
+ menuButton.onClicked: drawer.visible = !drawer.visible
}
diff --git a/pages/TaskList.qml b/pages/TaskList.qml
index 0714a8b..07a10ba 100644
--- a/pages/TaskList.qml
+++ b/pages/TaskList.qml
@@ -7,9 +7,7 @@ TaskListForm {
delegate: TaskForm {
width: parent.width
height: task.height
-
checkBox.text: subject
}
-
ScrollBar.vertical: ScrollBar {}
}