diff options
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 |