diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-12-08 19:51:42 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-12-08 19:54:35 +0100 |
commit | 68e9db0776225168bbb52d164b05b784466a28d8 (patch) | |
tree | 525687324ff88b17522bfec5691799d5677dd497 /gui/components/VPNState.qml | |
parent | 371ee5167ce5e6fccc5a2a159343658f01ba74f7 (diff) |
[ui] theming stub
Diffstat (limited to 'gui/components/VPNState.qml')
-rw-r--r-- | gui/components/VPNState.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/components/VPNState.qml b/gui/components/VPNState.qml index 4cacf2f..eeeb51d 100644 --- a/gui/components/VPNState.qml +++ b/gui/components/VPNState.qml @@ -31,7 +31,7 @@ StateGroup { } PropertyChanges { target: connectionImage - source: "../resources/ravens.gif" + source: customTheme.iconConnecting anchors.horizontalCenter: parent.horizontalCenter } PropertyChanges { @@ -63,7 +63,7 @@ StateGroup { } PropertyChanges { target: connectionImage - source: "../resources/icon-noshield.svg" + source: customTheme.iconOff } PropertyChanges { target: toggleVPN @@ -96,7 +96,7 @@ StateGroup { } PropertyChanges { target: connectionImage - source: "../resources/riseup-icon.svg" + source: customTheme.iconOn } PropertyChanges { target: toggleVPN @@ -130,7 +130,7 @@ StateGroup { } PropertyChanges { target: connectionImage - source: "../resources/ravens.gif" + source: customTheme.iconConnecting anchors.horizontalCenter: parent.horizontalCenter } PropertyChanges { |