diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-02-26 23:56:26 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-02-26 23:56:26 +0000 |
commit | 386f8d1f622e90413d055d8cb417b3650ad2164d (patch) | |
tree | fdb61d5619303761be370dd31958cf5bea617609 /gtk/gtkwindow.c | |
parent | ad64579ca088e50234b8a8264684e7d8c818f38c (diff) | |
download | gtk+-386f8d1f622e90413d055d8cb417b3650ad2164d.tar.gz |
Append mnemonics rather than prepending them so that the order is
Tue Feb 26 18:47:44 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
mnemonics rather than prepending them so that the
order is typically forward rather than typically
backward. (Partial fix for #52395)
Diffstat (limited to 'gtk/gtkwindow.c')
-rw-r--r-- | gtk/gtkwindow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index dbfd9c69f7..ed2ba87c3e 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -1136,7 +1136,7 @@ gtk_window_add_mnemonic (GtkWindow *window, if (mnemonic) { g_return_if_fail (g_slist_find (mnemonic->targets, target) == NULL); - mnemonic->targets = g_slist_prepend (mnemonic->targets, target); + mnemonic->targets = g_slist_append (mnemonic->targets, target); } else { |