diff options
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 {} } |