I had forgot to put GDK_NO_EXPOSE and GDK_VISIBILITY_NOTIFY events in gtk_main_iteration() - Federico

This commit is contained in:
Arturo Espinosa
1998-01-02 21:38:39 +00:00
parent 06dc220d64
commit 303c8f03a8
11 changed files with 685 additions and 0 deletions

View File

@ -191,6 +191,7 @@ gtkinclude_HEADERS = \
gtkframe.h \
gtkgamma.h \
gtkgc.h \
gtkhandlebox.h \
gtkhbbox.h \
gtkhbox.h \
gtkhpaned.h \

View File

@ -377,6 +377,7 @@ gtk_main_iteration ()
/* otherwise fall through */
case GDK_EXPOSE:
case GDK_NO_EXPOSE:
case GDK_FOCUS_CHANGE:
case GDK_CONFIGURE:
case GDK_MAP:
@ -390,6 +391,7 @@ gtk_main_iteration ()
case GDK_DROP_ENTER:
case GDK_DROP_LEAVE:
case GDK_DROP_DATA_AVAIL:
case GDK_VISIBILITY_NOTIFY:
gtk_widget_event (event_widget, event);
break;