Return progress as double, not int

This commit is contained in:
ItsDrike 2025-02-26 16:21:33 +01:00
parent 48ddf3d5ae
commit d54c6743e7
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
3 changed files with 6 additions and 6 deletions

View file

@ -151,7 +151,7 @@ ApplicationWindow {
}
Text {
text: factorizationController.progress.toFixed(0) + "%"
text: factorizationController.progress.toFixed(1) + "%"
anchors.centerIn: parent
font.pixelSize: 16
color: "black"