[kcms/icons] Use newer syntax for QML Connections

wilder-5.26
ivan tkachenko 4 years ago
parent c9582182a9
commit ef49484f59
No known key found for this signature in database
GPG Key ID: AF72731B7C654CB3
  1. 4
      kcms/icons/package/contents/ui/main.qml

@ -206,12 +206,12 @@ KCM.GridViewKCM {
Connections {
target: kcm
onShowProgress: {
function onShowProgress() {
progressLabel.text = message;
progressBusy.running = true;
progressRow.visible = true;
}
onHideProgress: {
function onHideProgress() {
progressBusy.running = false;
progressRow.visible = false;
}

Loading…
Cancel
Save