summary refs log tree commit diff
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
parentFix white bar above emoji picker (diff)
downloadnheko-239cfd6735c603678a44142ab26bd4898b82d706.tar.xz
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