aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/background.vala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/background.vala b/src/background.vala
index 9602837..75ed517 100644
--- a/src/background.vala
+++ b/src/background.vala
@@ -476,14 +476,19 @@ public class Background : Gtk.Fixed
}
set {
+ var pretty_value = "";
+
if (value == null || value == "")
{
_current_background = system_background;
+ pretty_value = "<system default bg image> ";
} else
{
_current_background = value;
}
+ pretty_value += _current_background;
+ debug ("Background change requested, changing to: %s", pretty_value);
reload ();
}
}