diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-12 20:26:35 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-12 20:26:35 +0100 |
commit | 239cfd6735c603678a44142ab26bd4898b82d706 (patch) | |
tree | 5b5c64be38e44d8dda98394f7200837e8253f308 /resources/qml | |
parent | Fix white bar above emoji picker (diff) | |
download | nheko-239cfd6735c603678a44142ab26bd4898b82d706.tar.xz |
Fix weirdly big spinner
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/NhekoBusyIndicator.qml | 4 |
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 |