Use the "Binding on ..." syntax whenever possible

This commit is contained in:
miruka
2019-12-11 13:03:33 -04:00
parent e694f1739b
commit c2b7b458f9
5 changed files with 6 additions and 21 deletions

View File

@@ -28,16 +28,12 @@ RadialBar {
theme.controls.circleProgressBar.indeterminateSpan
Binding {
target: bar;
property: "value";
Binding on value {
value: bar.to * bar.indeterminateSpan
when: bar.indeterminate
}
Binding {
target: bar
property: "showText"
Binding on showText {
value: false
when: bar.indeterminate
}

View File

@@ -130,9 +130,7 @@ HColumnLayout {
}
}
Binding {
target: timeSlider
property: "value"
Binding on value {
value: boundPosition
when: ! timeSlider.pressed
}