summaryrefslogtreecommitdiff
path: root/Home.qml
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-21 14:35:29 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-21 14:35:29 +0800
commit86ed329c306bb53681e22cdd3afc8f180293377a (patch)
tree6f5957bd8cbc778bf821f5bb93cfb9d66d5cb46c /Home.qml
parent5e7911117b621cbda0f12af69eb471e9732cf306 (diff)
Put the task list view inside the page
that was in day form
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")
+ }
}