diff --git a/kcms/launch/package/contents/ui/main.qml b/kcms/launch/package/contents/ui/main.qml --- a/kcms/launch/package/contents/ui/main.qml +++ b/kcms/launch/package/contents/ui/main.qml @@ -53,40 +53,38 @@ onNotificationTimeoutChanged: notificationTimeout.value = kcm.notificationTimeout } - ColumnLayout { - Kirigami.FormData.label: i18n("Cursor:") - QtControls.RadioButton { - id: busyCursorDisabled + QtControls.RadioButton { + id: busyCursorDisabled - text: i18n("No Feedback") + Kirigami.FormData.label: i18n("Cursor:") + text: i18n("No Feedback") - onToggled: kcm.busyCursorCurrentIndex = 0; - } + onToggled: kcm.busyCursorCurrentIndex = 0; + } - QtControls.RadioButton { - id: busyCursorStatic + QtControls.RadioButton { + id: busyCursorStatic - text: i18n("Static") + text: i18n("Static") - onToggled: kcm.busyCursorCurrentIndex = 1; - } + onToggled: kcm.busyCursorCurrentIndex = 1; + } - QtControls.RadioButton { - id: busyCursorBlinking + QtControls.RadioButton { + id: busyCursorBlinking - text: i18n("Blinking") + text: i18n("Blinking") - onToggled: kcm.busyCursorCurrentIndex = 2; - } + onToggled: kcm.busyCursorCurrentIndex = 2; + } - QtControls.RadioButton { - id: busyCursorBouncing + QtControls.RadioButton { + id: busyCursorBouncing - text: i18n("Bouncing") + text: i18n("Bouncing") - onToggled: kcm.busyCursorCurrentIndex = 3; - } + onToggled: kcm.busyCursorCurrentIndex = 3; } QtControls.CheckBox {