summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG4
-rw-r--r--gui/qml/BackgroundImage.qml2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 76a7c36..ec44f3e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+0.21.8
+======
+- Do not fail if ipv6 is disabled (GNU/Linux)
+
0.21.6
======
diff --git a/gui/qml/BackgroundImage.qml b/gui/qml/BackgroundImage.qml
index 3071bf4..aed907f 100644
--- a/gui/qml/BackgroundImage.qml
+++ b/gui/qml/BackgroundImage.qml
@@ -11,7 +11,7 @@ Rectangle {
Image {
source: parent.backgroundSrc;
- visible: parent.backgroundVisible;
+ visible: backgroundVisible;
fillMode: Image.PreserveAspectCrop;
anchors.fill: parent;
opacity: 0.8;