mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-25 04:42:14 +00:00
no more % on indicators
This commit is contained in:
parent
68b233f4ef
commit
69cd0fc447
2 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue