Extract indicators bar widget

This commit is contained in:
David Heinemeier Hansson
2026-05-20 18:32:00 +02:00
parent 1e63e86133
commit cf4729ca2b
16 changed files with 470 additions and 455 deletions
+2 -2
View File
@@ -30,9 +30,9 @@ BarIndicator {
Component.onCompleted: refresh()
Connections {
target: root.bar
target: root.indicatorHost
ignoreUnknownSignals: true
function onIndicatorsRefreshRequested() { root.refresh() }
function onRefreshRequested() { root.refresh() }
}
Process {
@@ -23,9 +23,9 @@ BarIndicator {
Component.onCompleted: refresh()
Connections {
target: root.bar
target: root.indicatorHost
ignoreUnknownSignals: true
function onIndicatorsRefreshRequested() { root.refresh() }
function onRefreshRequested() { root.refresh() }
}
Process {
+2 -2
View File
@@ -22,9 +22,9 @@ BarIndicator {
Component.onCompleted: refresh()
Connections {
target: root.bar
target: root.indicatorHost
ignoreUnknownSignals: true
function onIndicatorsRefreshRequested() { root.refresh() }
function onRefreshRequested() { root.refresh() }
}
Process {