diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-05-13 08:23:56 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-05-13 08:23:56 +0200 |
commit | a7f8b23b524c5e3af72e42fde118706e94a454f3 (patch) | |
tree | c3918f64578ee97b89dba41ae169baea09a061e6 /resources/qml/NhekoBusyIndicator.qml | |
parent | Fix warning on gcc11 (diff) | |
download | nheko-a7f8b23b524c5e3af72e42fde118706e94a454f3.tar.xz |
Make palette global in Qml
Diffstat (limited to 'resources/qml/NhekoBusyIndicator.qml')
-rw-r--r-- | resources/qml/NhekoBusyIndicator.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/qml/NhekoBusyIndicator.qml b/resources/qml/NhekoBusyIndicator.qml index 917e11dc..82dd26dd 100644 --- a/resources/qml/NhekoBusyIndicator.qml +++ b/resources/qml/NhekoBusyIndicator.qml @@ -5,6 +5,7 @@ import QtQuick 2.9 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 +import im.nheko 1.0 BusyIndicator { id: control @@ -38,7 +39,7 @@ BusyIndicator { implicitWidth: radius * 2 implicitHeight: radius * 2 radius: item.height / 6 - color: colors.text + color: Nheko.colors.text opacity: (index + 2) / (repeater.count + 2) transform: [ Translate { |