comparison src/event-msw.c @ 819:6504113e7c2d

[xemacs-hg @ 2002-04-25 18:03:23 by andyp] sync up windows branch from 21.4
author andyp
date Thu, 25 Apr 2002 18:04:24 +0000
parents a634e3b7acc8
children 6728e641994e
comparison
equal deleted inserted replaced
818:accc481aef34 819:6504113e7c2d
3040 FRAME_MSWINDOWS_TARGET_RECT (frame) = 0; 3040 FRAME_MSWINDOWS_TARGET_RECT (frame) = 0;
3041 } 3041 }
3042 } 3042 }
3043 else 3043 else
3044 { 3044 {
3045 if (!msframe->sizing && !FRAME_VISIBLE_P (frame)) 3045 if (!msframe->sizing && !FRAME_VISIBLE_P (frame)) {
3046 mswindows_enqueue_magic_event (hwnd, XM_MAPFRAME); 3046 mswindows_enqueue_magic_event (hwnd, XM_MAPFRAME);
3047 /* APA: Now that the magic XM_MAPFRAME event has 3047 /* APA: Now that the magic XM_MAPFRAME event has
3048 * been sent we can mark the frame as visible (just 3048 * been sent we can mark the frame as visible (just
3049 * like 21.1 did). */ 3049 * like 21.1 did). */
3050 FRAME_VISIBLE_P (frame) = 1; 3050 FRAME_VISIBLE_P (frame) = 1;
3051 }
3051 3052
3052 if (!msframe->sizing || mswindows_dynamic_frame_resize) 3053 if (!msframe->sizing || mswindows_dynamic_frame_resize)
3053 redisplay (); 3054 redisplay ();
3054 } 3055 }
3055 } 3056 }