Avoid a mnemonic conflict. (#163850, Dennis Cranston)

2006-03-10  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
	conflict.  (#163850, Dennis Cranston)
This commit is contained in:
Matthias Clasen 2006-03-10 22:56:15 +00:00 committed by Matthias Clasen
parent 80ee413123
commit 33fcc83274
3 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2006-03-10 Matthias Clasen <mclasen@redhat.com> 2006-03-10 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
conflict. (#163850, Dennis Cranston)
* gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour
of the about dialog consistent with other dialogs in gtk. If the of the about dialog consistent with other dialogs in gtk. If the
dialog is constructed with gtk_about_dialog_new(), the creator dialog is constructed with gtk_about_dialog_new(), the creator

View File

@ -1,5 +1,8 @@
2006-03-10 Matthias Clasen <mclasen@redhat.com> 2006-03-10 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
conflict. (#163850, Dennis Cranston)
* gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour
of the about dialog consistent with other dialogs in gtk. If the of the about dialog consistent with other dialogs in gtk. If the
dialog is constructed with gtk_about_dialog_new(), the creator dialog is constructed with gtk_about_dialog_new(), the creator

View File

@ -1996,7 +1996,7 @@ gtk_color_selection_init (GtkColorSelection *colorsel)
_("Amount of blue light in the color.")); _("Amount of blue light in the color."));
gtk_table_attach_defaults (GTK_TABLE (table), gtk_hseparator_new (), 0, 8, 3, 4); gtk_table_attach_defaults (GTK_TABLE (table), gtk_hseparator_new (), 0, 8, 3, 4);
priv->opacity_label = gtk_label_new_with_mnemonic (_("_Opacity:")); priv->opacity_label = gtk_label_new_with_mnemonic (_("Op_acity:"));
gtk_misc_set_alignment (GTK_MISC (priv->opacity_label), 0.0, 0.5); gtk_misc_set_alignment (GTK_MISC (priv->opacity_label), 0.0, 0.5);
gtk_table_attach_defaults (GTK_TABLE (table), priv->opacity_label, 0, 1, 4, 5); gtk_table_attach_defaults (GTK_TABLE (table), priv->opacity_label, 0, 1, 4, 5);
adjust = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 255.0, 1.0, 1.0, 0.0)); adjust = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 255.0, 1.0, 1.0, 0.0));