summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-01-12 20:26:35 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-01-12 20:26:35 +0100
commit239cfd6735c603678a44142ab26bd4898b82d706 (patch)
tree5b5c64be38e44d8dda98394f7200837e8253f308
parent9b8eb0a412275ac15f683bc96219a8dcaad1b8c7 (diff)
Fix weirdly big spinner
-rw-r--r--resources/qml/NhekoBusyIndicator.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/NhekoBusyIndicator.qml b/resources/qml/NhekoBusyIndicator.qml
index 6f6869f4..0c14646f 100644
--- a/resources/qml/NhekoBusyIndicator.qml
+++ b/resources/qml/NhekoBusyIndicator.qml
@@ -40,12 +40,12 @@ BusyIndicator {
Rectangle {
implicitWidth: radius * 2
implicitHeight: radius * 2
- radius: item.height / 6
+ radius: item.height / 8
color: Nheko.colors.text
opacity: (index + 2) / (repeater.count + 2)
transform: [
Translate {
- y: -Math.min(item.width, item.height) * 0.5 + item.height / 6
+ y: item.height / 2
},
Rotation {
angle: index / repeater.count * 360