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 @@ -60,31 +60,32 @@ text: i18n("No Feedback") - onCheckedChanged: Qt.later(function() { kcm.busyCursorCurrentIndex = 0; }) + onCheckedChanged: Qt.callLater(function() { kcm.busyCursorCurrentIndex = 0; }) + } QtControls.RadioButton { id: busyCursorStatic text: i18n("Static") - onCheckedChanged: Qt.later(function() { kcm.busyCursorCurrentIndex = 1; }) + onCheckedChanged: Qt.callLater(function() { kcm.busyCursorCurrentIndex = 1; }) } QtControls.RadioButton { id: busyCursorBlinking text: i18n("Blinking") - onCheckedChanged: Qt.later(function() { kcm.busyCursorCurrentIndex = 2; }) + onCheckedChanged: Qt.callLater(function() { kcm.busyCursorCurrentIndex = 2; }) } QtControls.RadioButton { id: busyCursorBouncing text: i18n("Bouncing") - onCheckedChanged: Qt.later(function() { kcm.busyCursorCurrentIndex = 3; }) + onCheckedChanged: Qt.callLater(function() { kcm.busyCursorCurrentIndex = 3; }) } }