mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
Don't do anything in meta_compositor_free_window. It doesn't seem to be
needed and breaks stuff badly (disappearing windows) svn path=/trunk/; revision=3500
This commit is contained in:
parent
e61015cb42
commit
212a9f26ab
@ -1,3 +1,9 @@
|
||||
2007-12-27 Iain Holmes <iain@gnome.org>
|
||||
|
||||
* src/core/compositor.c: Don't do anything in
|
||||
meta_compositor_free_window, it doesn't seem to be needed and breaks
|
||||
things very badly. http://bugzilla.gnome.org/show_bug.cgi?id=504876
|
||||
|
||||
2007-12-27 Iain Holmes <iain@gnome.org>
|
||||
|
||||
* src/core/compositor.c: When a window is mapped, don't set damaged to
|
||||
|
@ -1684,7 +1684,7 @@ destroy_win (MetaDisplay *display,
|
||||
MetaCompWindow *cw;
|
||||
|
||||
cw = find_window_in_display (display, xwindow);
|
||||
|
||||
|
||||
if (cw == NULL)
|
||||
return;
|
||||
|
||||
@ -2106,6 +2106,7 @@ process_unmap (MetaCompositor *compositor,
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
cw = find_window_in_display (compositor->display, event->window);
|
||||
if (cw)
|
||||
unmap_win (compositor->display, cw->screen, event->window);
|
||||
@ -2493,7 +2494,14 @@ meta_compositor_free_window (MetaCompositor *compositor,
|
||||
MetaWindow *window)
|
||||
{
|
||||
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
||||
destroy_win (compositor->display, window->xwindow, FALSE);
|
||||
/* FIXME: When an undecorated window is hidden this is called,
|
||||
but the window does not get readded if it is subsequentally shown again
|
||||
See http://bugzilla.gnome.org/show_bug.cgi?id=504876
|
||||
|
||||
I don't *think* theres any need for this call anyway, leaving it out
|
||||
does not seem to cause any side effects so far, but I should check with
|
||||
someone who understands more. */
|
||||
/* destroy_win (compositor->display, window->xwindow, FALSE); */
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user