diff --git a/ChangeLog b/ChangeLog index d0461c603d..f7d9681644 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-07-10 jacob berkman + + * gtk/gtkoptionmenu.c (gtk_option_menu_scroll_event): activate the + menu item so old apps work properly + Wed Jul 10 14:27:14 2002 Owen Taylor * modules/input/gtkimcontextxim.c gtk/gtkcolorsel.c diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index d0461c603d..f7d9681644 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2002-07-10 jacob berkman + + * gtk/gtkoptionmenu.c (gtk_option_menu_scroll_event): activate the + menu item so old apps work properly + Wed Jul 10 14:27:14 2002 Owen Taylor * modules/input/gtkimcontextxim.c gtk/gtkcolorsel.c diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index d0461c603d..f7d9681644 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2002-07-10 jacob berkman + + * gtk/gtkoptionmenu.c (gtk_option_menu_scroll_event): activate the + menu item so old apps work properly + Wed Jul 10 14:27:14 2002 Owen Taylor * modules/input/gtkimcontextxim.c gtk/gtkcolorsel.c diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index d0461c603d..f7d9681644 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2002-07-10 jacob berkman + + * gtk/gtkoptionmenu.c (gtk_option_menu_scroll_event): activate the + menu item so old apps work properly + Wed Jul 10 14:27:14 2002 Owen Taylor * modules/input/gtkimcontextxim.c gtk/gtkcolorsel.c diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index d0461c603d..f7d9681644 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2002-07-10 jacob berkman + + * gtk/gtkoptionmenu.c (gtk_option_menu_scroll_event): activate the + menu item so old apps work properly + Wed Jul 10 14:27:14 2002 Owen Taylor * modules/input/gtkimcontextxim.c gtk/gtkcolorsel.c diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index d0461c603d..f7d9681644 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2002-07-10 jacob berkman + + * gtk/gtkoptionmenu.c (gtk_option_menu_scroll_event): activate the + menu item so old apps work properly + Wed Jul 10 14:27:14 2002 Owen Taylor * modules/input/gtkimcontextxim.c gtk/gtkcolorsel.c diff --git a/gtk/gtkoptionmenu.c b/gtk/gtkoptionmenu.c index 443a3f4a63..23e657643c 100644 --- a/gtk/gtkoptionmenu.c +++ b/gtk/gtkoptionmenu.c @@ -1021,6 +1021,7 @@ gtk_option_menu_scroll_event (GtkWidget *widget, if (GTK_WIDGET_VISIBLE (item) && GTK_WIDGET_IS_SENSITIVE (item)) { gtk_option_menu_set_history (option_menu, index); + gtk_menu_item_activate (GTK_MENU_ITEM (item)); break; }