mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
frame: Don't reset window->rect
This commit is contained in:
parent
6e06648f7a
commit
f3f3c94831
@ -121,9 +121,6 @@ meta_window_ensure_frame (MetaWindow *window)
|
|||||||
"Incrementing unmaps_pending on %s for reparent\n", window->desc);
|
"Incrementing unmaps_pending on %s for reparent\n", window->desc);
|
||||||
window->unmaps_pending += 1;
|
window->unmaps_pending += 1;
|
||||||
}
|
}
|
||||||
/* window was reparented to this position */
|
|
||||||
window->rect.x = 0;
|
|
||||||
window->rect.y = 0;
|
|
||||||
|
|
||||||
stack_window.x11.xwindow = window->xwindow;
|
stack_window.x11.xwindow = window->xwindow;
|
||||||
meta_stack_tracker_record_remove (window->screen->stack_tracker,
|
meta_stack_tracker_record_remove (window->screen->stack_tracker,
|
||||||
@ -132,8 +129,8 @@ meta_window_ensure_frame (MetaWindow *window)
|
|||||||
XReparentWindow (window->display->xdisplay,
|
XReparentWindow (window->display->xdisplay,
|
||||||
window->xwindow,
|
window->xwindow,
|
||||||
frame->xwindow,
|
frame->xwindow,
|
||||||
window->rect.x,
|
frame->child_x,
|
||||||
window->rect.y);
|
frame->child_y);
|
||||||
/* FIXME handle this error */
|
/* FIXME handle this error */
|
||||||
meta_error_trap_pop (window->display);
|
meta_error_trap_pop (window->display);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user