diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-21 14:35:29 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-21 14:35:29 +0800 |
commit | 86ed329c306bb53681e22cdd3afc8f180293377a (patch) | |
tree | 6f5957bd8cbc778bf821f5bb93cfb9d66d5cb46c /TaskList.qml | |
parent | 5e7911117b621cbda0f12af69eb471e9732cf306 (diff) |
Put the task list view inside the page
that was in day form
Diffstat (limited to 'TaskList.qml')
-rw-r--r-- | TaskList.qml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/TaskList.qml b/TaskList.qml index 696f9ce..0e682df 100644 --- a/TaskList.qml +++ b/TaskList.qml @@ -3,12 +3,13 @@ import QtQuick.Controls 2.12 import "forms" TaskListForm { - objectName: "taskList" - model: taskList - delegate: TaskForm { - width: parent.width - height: task.height - checkBox.text: subject + listView { + objectName: "taskList" + model: taskList + delegate: TaskForm { + width: parent.width + height: task.height + checkBox.text: subject + } } - ScrollBar.vertical: ScrollBar {} } |