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

View file

@ -38,7 +38,7 @@ Rectangle {
StyledText {
Layout.alignment: Qt.AlignVCenter
color: Appearance.colors.colOnLayer1
text: `${Math.round(percentage * 100)}%`
text: `${Math.round(percentage * 100)}`
}
CircularProgress {

View file

@ -38,7 +38,7 @@ Item {
StyledText {
Layout.alignment: Qt.AlignVCenter
color: Appearance.colors.colOnLayer1
text: `${Math.round(percentage * 100)}%`
text: `${Math.round(percentage * 100)}`
}
Behavior on x {