mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
fix to keep desktop window from appearing on top of everything else, among
2001-10-22 Havoc Pennington <hp@pobox.com> * src/stack.c (meta_stack_sync_to_server): fix to keep desktop window from appearing on top of everything else, among other stack bugs. Untested.
This commit is contained in:
parent
01a5b5762d
commit
7069fc9b50
@ -1,3 +1,9 @@
|
||||
2001-10-22 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* src/stack.c (meta_stack_sync_to_server): fix to keep desktop
|
||||
window from appearing on top of everything else, among other stack
|
||||
bugs. Untested.
|
||||
|
||||
2001-10-15 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* src/window.c (meta_window_new): use queried attributes to check
|
||||
|
@ -728,6 +728,12 @@ meta_stack_sync_to_server (MetaStack *stack)
|
||||
/* Restack remaining windows */
|
||||
meta_verbose ("Restacking remaining %d windows\n",
|
||||
(int) (new_end - newp));
|
||||
/* We need to include an already-stacked window
|
||||
* in the restack call, so we get in the proper position
|
||||
* with respect to it.
|
||||
*/
|
||||
if (newp != new_stack)
|
||||
--newp;
|
||||
XRestackWindows (stack->screen->display->xdisplay,
|
||||
(Window *) newp, new_end - newp);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user