Use gtk_label_new_with_mnemonic and add an accel to the label.

2002-03-25  Jody Goldberg <jody@gnome.org>

	* gnome-keyboard-properties.c (setup_accessibility) : Use
	  gtk_label_new_with_mnemonic and add an accel to the label.
This commit is contained in:
Jody Goldberg 2002-03-25 16:36:11 +00:00 committed by Jody Goldberg
parent b76209e81e
commit 02b2ad66f7
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-03-25 Jody Goldberg <jody@gnome.org>
* gnome-keyboard-properties.c (setup_accessibility) : Use
gtk_label_new_with_mnemonic and add an accel to the label.
2002-03-19 Jody Goldberg <jody@gnome.org>
* gnome-keyboard-properties.c (_to_widget) : fix signature.

View file

@ -308,7 +308,7 @@ static void
setup_accessibility (GladeXML *dialog, GConfChangeSet *changeset)
{
GtkWidget *notebook = WID ("notebook1");
GtkWidget *label = gtk_label_new (_("Accessibility"));
GtkWidget *label = gtk_label_new_with_mnemonic (_("_Accessibility"));
GtkWidget *page = setup_accessX_dialog (changeset, FALSE);
gtk_notebook_append_page (GTK_NOTEBOOK (notebook), page, label);
}