summaryrefslogtreecommitdiff
path: root/gui/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'gui/qml/main.qml')
-rw-r--r--gui/qml/main.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml
index e12c61d..b30fa0a 100644
--- a/gui/qml/main.qml
+++ b/gui/qml/main.qml
@@ -276,6 +276,14 @@ ApplicationWindow {
allowEmptyPass = Logic.shouldAllowEmptyPass(providers)
needsRestart = false;
shownDonate = false;
+
+ /* this is a temporary workaround until general GUI revamp for 0.21.8 */
+ let provider = Logic.getSelectedProvider(providers);
+ if (provider == "calyx") {
+ background.backgroundVisible = false;
+ background.color = "#8EA844";
+ }
+
if (!systrayAvailable) {
app.visible = true
app.raise()