diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-03-17 12:47:46 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-05-04 14:58:39 +0200 |
commit | 74bffa3b21947600a550056d16163f5059d5fa2b (patch) | |
tree | 0b677f50b00349889684668c129f0bca08c773bb /gui/qml/VpnState.qml | |
parent | c46ec33dc3a187dade408ffd9e6de8ba5a460810 (diff) |
remove map for now
Diffstat (limited to 'gui/qml/VpnState.qml')
-rw-r--r-- | gui/qml/VpnState.qml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gui/qml/VpnState.qml b/gui/qml/VpnState.qml index ffad207..4906fce 100644 --- a/gui/qml/VpnState.qml +++ b/gui/qml/VpnState.qml @@ -36,16 +36,9 @@ StateGroup { target: mainOffBtn visible: false } - PropertyChanges { - target: gwMarker - color: "red" - } }, State { name: "on" - StateChangeScript { - script: displayGatewayMarker() - } PropertyChanges { target: systray tooltip: toHuman("on") @@ -71,10 +64,6 @@ StateGroup { target: mainOffBtn visible: true } - PropertyChanges { - target: gwMarker - color: "green" - } }, State { name: "starting" @@ -103,10 +92,6 @@ StateGroup { target: mainOffBtn visible: true } - PropertyChanges { - target: gwMarker - color: "orange" - } }, State { name: "stopping" @@ -135,10 +120,6 @@ StateGroup { target: mainOffBtn visible: false } - PropertyChanges { - target: gwMarker - color: "orange" - } }, State { name: "failed" @@ -167,10 +148,6 @@ StateGroup { target: mainOffBtn visible: false } - PropertyChanges { - target: gwMarker - color: "red" - } } ] } |