diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-09-24 08:57:57 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-09-24 08:57:57 +0000 |
commit | aa6cde8dc31ff110660d2b58006724f7621e046b (patch) | |
tree | 10e49d2595120454f3e9592ba23ca31e4fdd215d /gtk/gtkspinbutton.c | |
parent | bbf6222a7ef6411aa1d98e24639947f43eb4424b (diff) | |
download | gtk+-aa6cde8dc31ff110660d2b58006724f7621e046b.tar.gz |
Chain up so that entry->activates_default is honored. (#93865, Pieter
Tue Sep 24 04:50:28 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkspinbutton.c (gtk_spin_button_activate):
Chain up so that entry->activates_default is honored.
(#93865, Pieter Penninckx)
Diffstat (limited to 'gtk/gtkspinbutton.c')
-rw-r--r-- | gtk/gtkspinbutton.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 96858e704f..ac12478a16 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -1344,6 +1344,9 @@ gtk_spin_button_activate (GtkEntry *entry) { if (entry->editable) gtk_spin_button_update (GTK_SPIN_BUTTON (entry)); + + /* Chain up so that entry->activates_default is honored */ + parent_class->activate (entry); } static void |