diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-06-02 16:56:20 +0100 |
---|---|---|
committer | Arseniy Movshev <dodoradio@outlook.com> | 2023-06-02 17:12:18 +0100 |
commit | 95edb599eb148d945c62fbb3fc200bfd5601f101 (patch) | |
tree | 0d747bc30fecc50d15574a44ced8ba8396c0c147 /src | |
parent | e28f53101fb034e0b29b406914f2fa9688d64bb0 (diff) |
make the steps graph barely fit on round displays
Diffstat (limited to 'src')
-rw-r--r-- | src/main.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.qml b/src/main.qml index f428db6..48e846b 100644 --- a/src/main.qml +++ b/src/main.qml @@ -73,8 +73,8 @@ Application { BarGraph { id: stepsGraph anchors.horizontalCenter: parent.horizontalCenter - width: parent.width*0.9 - height: app.height*2/3 + width: parent.width*0.85 + height: app.width*3/5 StepsDataLoader { id: stepsDataLoader Component.onCompleted: { |