Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xfwm4
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xfce
xfwm4
Commits
643b0f8a
Commit
643b0f8a
authored
15 years ago
by
Olivier Fourdan
Committed by
Jérôme Guelfucci
15 years ago
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
defaults/defaults
+1
-1
1 addition, 1 deletion
defaults/defaults
src/settings.c
+7
-3
7 additions, 3 deletions
src/settings.c
with
8 additions
and
4 deletions
defaults/defaults
+
1
−
1
View file @
643b0f8a
...
...
@@ -7,7 +7,7 @@ button_offset=0
button_spacing=0
click_to_focus=true
cycle_draw_frame=true
cycle_apps_only=
tru
e
cycle_apps_only=
fals
e
cycle_hidden=true
cycle_minimum=true
cycle_workspaces=false
...
...
This diff is collapsed.
Click to expand it.
src/settings.c
+
7
−
3
View file @
643b0f8a
...
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment