diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-24 15:24:10 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-24 15:24:10 +0700 |
commit | 91640a2222eeca5e424ac27bc93514e56a2d5c56 (patch) | |
tree | 9111f2671ccb1cfc6f60b43c60259674b7f3bc87 /TaskList.qml | |
parent | 6554c14faf89679915a2c3c9e74242c6d4b8b72b (diff) | |
parent | b4a7a55b35b441d7e4e4acd83e85f2c21961f9b6 (diff) |
Merge branch 'master' of ssh://darapsa.co.id/usr/local/git/kelakon into development
* 'master' of ssh://darapsa.co.id/usr/local/git/kelakon:
Task related forms are moved to Larva
Task list element pushes to task details
Diffstat (limited to 'TaskList.qml')
-rw-r--r-- | TaskList.qml | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/TaskList.qml b/TaskList.qml index d522417..ab92327 100644 --- a/TaskList.qml +++ b/TaskList.qml @@ -1,6 +1,5 @@ import QtQuick 2.12 -import QtQuick.Controls 2.12 -import "forms" +import "larva/features" TaskListForm { listView { @@ -9,13 +8,8 @@ TaskListForm { delegate: TaskForm { width: parent.width height: task.height - taskTitle.text: subject + taskTitle.text: subject + itemDelegate.onClicked: contentView.push("TaskDetails.qml") } } } - -/*##^## -Designer { - D{i:0;autoSize:true;height:480;width:640} -} -##^##*/ |