[Xfce4-commits] [xfce/thunar] 02/02: TWP: Single-workspace-mode = TRUE is the default (Bug #11047)
noreply at xfce.org
noreply at xfce.org
Wed Feb 11 22:48:36 CET 2015
This is an automated email from the git hooks/post-receive script.
andrzejr pushed a commit to branch master
in repository xfce/thunar.
commit 00ddf79a47a4f14354039e7081d78b3ced8764a2
Author: Eric Koegel <eric.koegel at gmail.com>
Date: Mon Feb 9 15:54:54 2015 +0300
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);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list