diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-06 16:15:12 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-06 16:15:12 +0700 |
commit | 48895cf915d4c1be2534588f18f58ea78079d6ae (patch) | |
tree | 41da310562efaab316f07800494c3e1cc4d02f11 /pages | |
parent | 9c35ba2499a51f2913579bb91881b5d5f27baf75 (diff) |
reduce height
Diffstat (limited to 'pages')
-rw-r--r-- | pages/TaskForm.ui.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/TaskForm.ui.qml b/pages/TaskForm.ui.qml index a0f4a98..6010b57 100644 --- a/pages/TaskForm.ui.qml +++ b/pages/TaskForm.ui.qml @@ -8,7 +8,7 @@ RowLayout { id: task width: fillWidth - height: 72 + height: 54 anchors.topMargin: 8 anchors.right: parent.right anchors.rightMargin: 0 @@ -18,13 +18,13 @@ RowLayout { CheckBox { id: checkBox - height: 54 text: qsTr("This is a task title") padding: 8 rightPadding: 16 leftPadding: 16 bottomPadding: 16 topPadding: 16 + Layout.fillHeight: true Layout.fillWidth: true font.family: "Google Sans" font.pointSize: 16 |