summaryrefslogtreecommitdiff
path: root/contents
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-04-09 16:51:11 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-04-09 16:51:11 +0800
commit6c340651ddffda29f0a7447cdb47803cbae88c97 (patch)
treee5f53de9cf050e42e75c5efceaa162ecc457cc96 /contents
parent5f740256b6bd01dd66fa6e54a5176bd88d68cf6e (diff)
Move checkbox below spinbox
Diffstat (limited to 'contents')
-rw-r--r--contents/ui/configGeneral.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/contents/ui/configGeneral.qml b/contents/ui/configGeneral.qml
index dc73ca9..b6cd22a 100644
--- a/contents/ui/configGeneral.qml
+++ b/contents/ui/configGeneral.qml
@@ -7,11 +7,6 @@ Kirigami.FormLayout {
property alias cfg_showSubmittedAssignments: showSubmittedAssignments.checked
property alias cfg_refreshInterval: refreshInterval.value
- CheckBox {
- id: showSubmittedAssignments
- text: i18n("Show submitted assignments")
- }
-
SpinBox {
id: refreshInterval
Kirigami.FormData.label: i18n("Refresh interval (minutes):")
@@ -19,5 +14,10 @@ Kirigami.FormLayout {
from: 1
to: 1440
}
+
+ CheckBox {
+ id: showSubmittedAssignments
+ text: i18n("Show submitted assignments")
+ }
}