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
adf5078a
Commit
adf5078a
authored
18 years ago
by
Olivier Fourdan
Browse files
Options
Downloads
Patches
Plain Diff
Do not raise on WM_TRANSIENT_FOR property change, fix bug #2483.
(Old svn revision: 23582)
parent
00171358
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/events.c
+18
-0
18 additions, 0 deletions
src/events.c
with
18 additions
and
0 deletions
src/events.c
+
18
−
0
View file @
adf5078a
...
@@ -1825,7 +1825,25 @@ handlePropertyNotify (DisplayInfo *display_info, XPropertyEvent * ev)
...
@@ -1825,7 +1825,25 @@ handlePropertyNotify (DisplayInfo *display_info, XPropertyEvent * ev)
if
(
clientCheckTransientWindow
(
c
,
w
))
if
(
clientCheckTransientWindow
(
c
,
w
))
{
{
c
->
transient_for
=
w
;
c
->
transient_for
=
w
;
#if 0
/*
Java 1.6 updates the WM_TRANSIENT_FOR properties "on-the-fly"
of its windows to maintain the z-order.
If we raise the transient then, we clearly have a race
condition between the WM and Java... And that breaks
the z-order. Bug #2483.
I still think that raising here makes sense, to ensure
that the newly promoted transient window is placed above
its parent.
Chances are that Java 1.6 won't change any time soon (heh,
it's not even released yet), so let's adjust the WM to
work with Java 1.6...
*/
clientRaise (c, w);
clientRaise (c, w);
#endif
}
}
}
}
else
if
(
ev
->
atom
==
display_info
->
atoms
[
WIN_HINTS
])
else
if
(
ev
->
atom
==
display_info
->
atoms
[
WIN_HINTS
])
...
...
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