Skip to content
Snippets Groups Projects
Commit 643b0f8a authored by Olivier Fourdan's avatar Olivier Fourdan :tools: Committed by Jérôme Guelfucci
Browse files

Missing setting for cycle_apps_only

cycle_apps_only defaults to false as it might be confusing at times
parent b8a82909
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ button_offset=0
button_spacing=0
click_to_focus=true
cycle_draw_frame=true
cycle_apps_only=true
cycle_apps_only=false
cycle_hidden=true
cycle_minimum=true
cycle_workspaces=false
......
......@@ -1103,7 +1103,7 @@ cb_xfwm4_channel_property_changed(XfconfChannel *channel, const gchar *property_
}
else
{
g_warning("The property '%s' is not supported", property_name);
g_warning("The property '%s' of type string is not supported", property_name);
}
break;
case G_TYPE_INT:
......@@ -1188,7 +1188,7 @@ cb_xfwm4_channel_property_changed(XfconfChannel *channel, const gchar *property_
}
else
{
g_warning("The property '%s' is not supported", property_name);
g_warning("The property '%s' of type int is not supported", property_name);
}
break;
case G_TYPE_BOOLEAN:
......@@ -1264,6 +1264,10 @@ cb_xfwm4_channel_property_changed(XfconfChannel *channel, const gchar *property_
{
screen_info->params->cycle_workspaces = g_value_get_boolean (value);
}
else if (!strcmp (name, "cycle_apps_only"))
{
screen_info->params->cycle_apps_only = g_value_get_boolean (value);
}
else if (!strcmp (name, "focus_hint"))
{
screen_info->params->focus_hint = g_value_get_boolean (value);
......@@ -1333,7 +1337,7 @@ cb_xfwm4_channel_property_changed(XfconfChannel *channel, const gchar *property_
}
else
{
g_warning("The property '%s' is not supported", property_name);
g_warning("The property '%s' of type boolean is not supported", property_name);
}
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment