forked from AuroraMiddleware/gtk
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:
parent
80ee413123
commit
33fcc83274
@ -1,5 +1,8 @@
|
||||
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
|
||||
of the about dialog consistent with other dialogs in gtk. If the
|
||||
dialog is constructed with gtk_about_dialog_new(), the creator
|
||||
|
@ -1,5 +1,8 @@
|
||||
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
|
||||
of the about dialog consistent with other dialogs in gtk. If the
|
||||
dialog is constructed with gtk_about_dialog_new(), the creator
|
||||
|
@ -1996,7 +1996,7 @@ gtk_color_selection_init (GtkColorSelection *colorsel)
|
||||
_("Amount of blue light in the color."));
|
||||
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_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));
|
||||
|
Loading…
Reference in New Issue
Block a user