aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-07-05 08:23:34 +0000
committerRichard M. Stallman <[email protected]>1997-07-05 08:23:34 +0000
commit4d3f5d9ab7e23f62c40d98f0b837a41a3a9273bb (patch)
treefe813a0c0981e24438a793c5b1342355ab3fb3dc
parent34fbcdf384c7856350b5ae3cdc9d36920fb1390d (diff)
(x_make_frame_visible): Don't move the frame
if it was iconified--only if it was invisible.
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 6393ae5202..6cc3f83b09 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -5709,7 +5709,7 @@ x_make_frame_visible (f)
because the window manager may choose the position
and we don't want to override it. */
- if (! FRAME_VISIBLE_P (f)
+ if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f)
&& f->output_data.x->win_gravity == NorthWestGravity
&& previously_visible)
{