diff options
-rw-r--r-- | TaskList.qml | 8 | ||||
-rw-r--r-- | forms/TaskForm.ui.qml | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/TaskList.qml b/TaskList.qml index 0e682df..d522417 100644 --- a/TaskList.qml +++ b/TaskList.qml @@ -9,7 +9,13 @@ TaskListForm { delegate: TaskForm { width: parent.width height: task.height - checkBox.text: subject + taskTitle.text: subject } } } + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ diff --git a/forms/TaskForm.ui.qml b/forms/TaskForm.ui.qml index b8c23e5..52c0f02 100644 --- a/forms/TaskForm.ui.qml +++ b/forms/TaskForm.ui.qml @@ -4,7 +4,7 @@ import QtQuick.Layouts 1.12 GridLayout { property alias task: task - property alias checkBox: checkBox + property alias taskTitle: taskTitle id: task width: fillWidth @@ -37,7 +37,7 @@ GridLayout { Layout.fillWidth: true Layout.fillHeight: true Label { - id: checkBox + id: taskTitle text: qsTr("Task title") Layout.columnSpan: 0 Layout.rowSpan: 0 |