summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {}
}