(x_iconify_frame): Clear visible when we set iconified.
This commit is contained in:
parent
98381e4289
commit
1e6bc770bd
1 changed files with 5 additions and 0 deletions
|
@ -5527,7 +5527,9 @@ x_iconify_frame (f)
|
|||
that an invisible frame was changed to an icon,
|
||||
so we have to record it here. */
|
||||
f->iconified = 1;
|
||||
f->visible = 1;
|
||||
f->async_iconified = 1;
|
||||
f->async_visible = 0;
|
||||
UNBLOCK_INPUT;
|
||||
return;
|
||||
}
|
||||
|
@ -5541,6 +5543,8 @@ x_iconify_frame (f)
|
|||
error ("Can't notify window manager of iconification");
|
||||
|
||||
f->async_iconified = 1;
|
||||
f->async_visible = 0;
|
||||
|
||||
|
||||
BLOCK_INPUT;
|
||||
XFlush (FRAME_X_DISPLAY (f));
|
||||
|
@ -5588,6 +5592,7 @@ x_iconify_frame (f)
|
|||
}
|
||||
|
||||
f->async_iconified = 1;
|
||||
f->async_visible = 0;
|
||||
|
||||
XFlush (FRAME_X_DISPLAY (f));
|
||||
UNBLOCK_INPUT;
|
||||
|
|
Loading…
Add table
Reference in a new issue