[Xfce4-commits] r23102 - xfdesktop/trunk/settings
Olivier Fourdan
olivier at xfce.org
Thu Sep 7 19:55:07 UTC 2006
Author: olivier
Date: 2006-09-07 19:55:06 +0000 (Thu, 07 Sep 2006)
New Revision: 23102
Modified:
xfdesktop/trunk/settings/appearance-settings.c
Log:
Use solid color by default if no setting is set, don't show image and gradient - That looks slick and might speed up startup time by default
Modified: xfdesktop/trunk/settings/appearance-settings.c
===================================================================
--- xfdesktop/trunk/settings/appearance-settings.c 2006-09-07 19:48:00 UTC (rev 23101)
+++ xfdesktop/trunk/settings/appearance-settings.c 2006-09-07 19:55:06 UTC (rev 23102)
@@ -275,9 +275,9 @@
if(setting)
bp->show_image = setting->data.v_int == 0 ? FALSE : TRUE;
else {
- bp->show_image = TRUE;
+ bp->show_image = FALSE;
mcs_manager_set_int(mcs_plugin->manager, setting_name,
- BACKDROP_CHANNEL, 1);
+ BACKDROP_CHANNEL, 0);
}
/* the color style */
@@ -287,7 +287,7 @@
if(setting)
bp->color_style = setting->data.v_int;
else {
- bp->color_style = XFCE_BACKDROP_COLOR_HORIZ_GRADIENT;
+ bp->color_style = XFCE_BACKDROP_COLOR_SOLID;
mcs_manager_set_int(mcs_plugin->manager, setting_name,
BACKDROP_CHANNEL, bp->color_style);
}
More information about the Xfce4-commits
mailing list