summaryrefslogtreecommitdiff
path: root/Home.qml
diff options
context:
space:
mode:
Diffstat (limited to 'Home.qml')
-rw-r--r--Home.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/Home.qml b/Home.qml
index e07fbf7..8754bc7 100644
--- a/Home.qml
+++ b/Home.qml
@@ -27,7 +27,7 @@ HomeForm {
todayItemDelegate {
text: qsTr("Today")
onClicked: {
- contentView.push("Today.qml")
+ contentView.push("TaskList.qml")
drawer.close()
}
}
@@ -35,12 +35,14 @@ HomeForm {
futureItemDelegate {
text:qsTr("Future")
onClicked: {
- contentView.push("Future.qml")
+ contentView.push("TaskList.qml")
drawer.close()
}
}
}
}
- contentView.initialItem: Today {}
+ contentView.initialItem: TaskList {
+ title: qsTr("Today")
+ }
}