Fix context iterations for handle_configure_event()
svn path=/trunk/; revision=17834
This commit is contained in:
parent
1612845031
commit
50af49319a
@ -1,3 +1,10 @@
|
|||||||
|
2007-05-13 Cody Russell <bratsche@gnome.org>
|
||||||
|
|
||||||
|
* gdk/win32/gdkevents-win32.c: Only do the configure event context
|
||||||
|
iteration under WM_WINDOWPOSCHANGED instead of inside
|
||||||
|
handle_configure_event(). This fixes a bug that prevented window
|
||||||
|
contents from being redrawn after gtk_window_resize(). (#436721)
|
||||||
|
|
||||||
2007-05-12 Behdad Esfahbod <behdad@gnome.org>
|
2007-05-12 Behdad Esfahbod <behdad@gnome.org>
|
||||||
|
|
||||||
* gdk/gdkdraw.c (gdk_draw_trapezoids): Fix wrong cairo path
|
* gdk/gdkdraw.c (gdk_draw_trapezoids): Fix wrong cairo path
|
||||||
|
@ -1778,8 +1778,6 @@ handle_configure_event (MSG *msg,
|
|||||||
|
|
||||||
append_event (event);
|
append_event (event);
|
||||||
}
|
}
|
||||||
|
|
||||||
g_main_context_iteration (NULL, FALSE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
GdkRegion *
|
GdkRegion *
|
||||||
@ -2907,6 +2905,7 @@ gdk_event_translate (MSG *msg,
|
|||||||
((GdkWindowObject *) window)->resize_count -= 1;
|
((GdkWindowObject *) window)->resize_count -= 1;
|
||||||
|
|
||||||
handle_configure_event (msg, window);
|
handle_configure_event (msg, window);
|
||||||
|
g_main_context_iteration (NULL, FALSE);
|
||||||
|
|
||||||
/* Dispatch main loop - to realize resizes... */
|
/* Dispatch main loop - to realize resizes... */
|
||||||
handle_stuff_while_moving_or_resizing ();
|
handle_stuff_while_moving_or_resizing ();
|
||||||
|
Loading…
Reference in New Issue
Block a user