no more % on indicators

This commit is contained in:
end-4
2025-05-18 18:52:04 +02:00
parent 68b233f4ef
commit 69cd0fc447
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ Rectangle {
StyledText { StyledText {
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
color: Appearance.colors.colOnLayer1 color: Appearance.colors.colOnLayer1
text: `${Math.round(percentage * 100)}%` text: `${Math.round(percentage * 100)}`
} }
CircularProgress { CircularProgress {
+1 -1
View File
@@ -38,7 +38,7 @@ Item {
StyledText { StyledText {
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
color: Appearance.colors.colOnLayer1 color: Appearance.colors.colOnLayer1
text: `${Math.round(percentage * 100)}%` text: `${Math.round(percentage * 100)}`
} }
Behavior on x { Behavior on x {