From 9de6dbe20d33dc0a9e9ac1968146433ff2aeae2e Mon Sep 17 00:00:00 2001 From: Eric Koegel Date: Mon, 9 Feb 2015 15:54:54 +0300 Subject: [PATCH] TWP: Single-workspace-mode = TRUE is the default (Bug #11047) Xfdesktop assumes single-workspace-mode = TRUE, so we need to do the same when setting wallpapers in Thunar. Thanks to ToZ for finding this. --- plugins/thunar-wallpaper/twp-provider.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/thunar-wallpaper/twp-provider.c b/plugins/thunar-wallpaper/twp-provider.c index 015b4a3..0dbaa53 100644 --- a/plugins/thunar-wallpaper/twp-provider.c +++ b/plugins/thunar-wallpaper/twp-provider.c @@ -290,8 +290,9 @@ twp_action_set_wallpaper (GtkAction *action, /* Xfdesktop 4.11+ has a concept of a single-workspace-mode where * the same workspace is used for everything but additionally allows * the user to use any current workspace as the single active - * workspace, we'll need to check if it is enabled and use that. */ - is_single_workspace = xfconf_channel_get_bool (channel, "/backdrop/single-workspace-mode", FALSE); + * workspace, we'll need to check if it is enabled (which by default + * it is) and use that. */ + is_single_workspace = xfconf_channel_get_bool (channel, "/backdrop/single-workspace-mode", TRUE); if (is_single_workspace) { workspace = xfconf_channel_get_int (channel, "/backdrop/single-workspace-number", 0); -- 2.3.0