Compare commits

..

No commits in common. "69cb49c584acb48f17696d10f4d6f5f4e72e6a4d" and "d043f862693638bb96dc4de307aa85980b2b4855" have entirely different histories.

2 changed files with 6 additions and 3 deletions

View file

@ -53,7 +53,7 @@ StyledButton {
} }
return Theme.palette.basecontent; return Theme.palette.basecontent;
} }
text: `${(root.laptopBattery.percentage.toFixed(2) * 100)}%` text: `${root.laptopBattery.percentage * 100}%`
} }
} }
visible: laptopBattery visible: laptopBattery

View file

@ -4,7 +4,10 @@ import QtQuick
Text { Text {
font.family: Theme.fontFamily font.family: Theme.fontFamily
color: Theme.palette.basecontent color: Theme.palette.basecontent
ColorAnimation on color { Behavior on color {
duration: 100 ColorAnimation {
duration: 200
easing.type: Easing.InOutQuad
}
} }
} }