mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
[GTK3] Move the frame to position before showing
* src/xterm.c (x_make_frame_visible): Move XMoveWindow call before gtk_widget_show_all, so that the move happens before the frame become visible (bug#80662).
This commit is contained in:
parent
6c3dc7aafd
commit
f20e3e473d
1 changed files with 1 additions and 1 deletions
|
|
@ -29192,9 +29192,9 @@ x_make_frame_visible (struct frame *f)
|
|||
{
|
||||
block_input ();
|
||||
#ifdef USE_GTK
|
||||
gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
|
||||
XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
|
||||
f->left_pos, f->top_pos);
|
||||
gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
|
||||
#else
|
||||
XMapRaised (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue