summaryrefslogtreecommitdiff
path: root/contents/ui/configGeneral.qml
diff options
context:
space:
mode:
Diffstat (limited to 'contents/ui/configGeneral.qml')
-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")
+ }
}