Use R as mnemonic for the Credits button to avoid duplicate. (#163465,

2005-01-13  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
	for the Credits button to avoid duplicate.  (#163465, Tim-Philipp
	Müller)
This commit is contained in:
Matthias Clasen 2005-01-13 15:30:01 +00:00 committed by Matthias Clasen
parent 130b7826b5
commit 4c36efa609
4 changed files with 13 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
for the Credits button to avoid duplicate. (#163465, Tim-Philipp
Müller)
* configure.in: Add an OS_LINUX conditional.
* gdk/Makefile.am (TESTS):

View File

@ -1,5 +1,9 @@
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
for the Credits button to avoid duplicate. (#163465, Tim-Philipp
Müller)
* configure.in: Add an OS_LINUX conditional.
* gdk/Makefile.am (TESTS):

View File

@ -1,5 +1,9 @@
2005-01-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
for the Credits button to avoid duplicate. (#163465, Tim-Philipp
Müller)
* configure.in: Add an OS_LINUX conditional.
* gdk/Makefile.am (TESTS):

View File

@ -479,7 +479,7 @@ gtk_about_dialog_init (GtkAboutDialog *about)
gtk_dialog_set_default_response (GTK_DIALOG (about), GTK_RESPONSE_CLOSE);
/* Add the credits button */
button = gtk_button_new_from_stock (_("_Credits"));
button = gtk_button_new_from_stock (_("C_redits"));
gtk_box_pack_end (GTK_BOX (GTK_DIALOG (about)->action_area),
button, FALSE, TRUE, 0);
gtk_button_box_set_child_secondary (GTK_BUTTON_BOX (GTK_DIALOG (about)->action_area), button, TRUE);