]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_set_icon_type, x_set_icon_name): Don't ever remap the
authorRichard M. Stallman <rms@gnu.org>
Sun, 2 Jul 1995 02:36:32 +0000 (02:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 2 Jul 1995 02:36:32 +0000 (02:36 +0000)
frame window; changing the icon doesn't make it disappear.

src/xfns.c

index 3e32e3c82f03f6349db49b8a472cd69b6b4f9809..1f399f5a9c467f2940f82a89dfa42814563abacd 100644 (file)
@@ -1474,16 +1474,6 @@ x_set_icon_type (f, arg, oldval)
       error ("No icon window available");
     }
 
-  /* If the window was unmapped (and its icon was mapped),
-     the new icon is not mapped, so map the window in its stead.  */
-  if (FRAME_VISIBLE_P (f))
-    {
-#ifdef USE_X_TOOLKIT
-      XtPopup (f->display.x->widget, XtGrabNone);
-#endif
-      XMapWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
-    }
-
   XFlush (FRAME_X_DISPLAY (f));
   UNBLOCK_INPUT;
 }
@@ -1537,16 +1527,6 @@ x_set_icon_name (f, arg, oldval)
       error ("No icon window available");
     }
 
-  /* If the window was unmapped (and its icon was mapped),
-     the new icon is not mapped, so map the window in its stead.  */
-  if (FRAME_VISIBLE_P (f))
-    {
-#ifdef USE_X_TOOLKIT
-      XtPopup (f->display.x->widget, XtGrabNone);
-#endif
-      XMapWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
-    }
-
   XFlush (FRAME_X_DISPLAY (f));
   UNBLOCK_INPUT;
 }