mirror of https://github.com/GNOME/gimp.git
plug-ins/common/mapcolor.c avoid using FG and BG.
2006-03-24 Sven Neumann <sven@gimp.org> * plug-ins/common/mapcolor.c * plug-ins/common/warp.c: avoid using FG and BG.
This commit is contained in:
parent
f40e8e8a51
commit
86eab9bf5e
|
@ -1,3 +1,8 @@
|
|||
2006-03-24 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/mapcolor.c
|
||||
* plug-ins/common/warp.c: avoid using FG and BG.
|
||||
|
||||
2006-03-24 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/actions/colormap-editor-actions.c
|
||||
|
|
|
@ -148,7 +148,7 @@ query (void)
|
|||
"Peter Kirchgessner",
|
||||
"Peter Kirchgessner",
|
||||
dversio,
|
||||
N_("Adjust _FG-BG"),
|
||||
N_("Adjust _Foreground & Background"),
|
||||
"RGB*",
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (adjust_args), 0,
|
||||
|
@ -232,7 +232,7 @@ run (const gchar *name,
|
|||
|
||||
plvals.map_mode = 0;
|
||||
|
||||
gimp_progress_init (_("Adjusting FG-BG"));
|
||||
gimp_progress_init (_("Adjusting foreground and background colors"));
|
||||
|
||||
color_mapping (drawable);
|
||||
break;
|
||||
|
|
|
@ -478,7 +478,7 @@ warp_dialog (GimpDrawable *drawable)
|
|||
GTK_FILL, GTK_FILL, 0, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
toggle_hbox = gtk_hbox_new (FALSE, 4);
|
||||
toggle_hbox = gtk_hbox_new (FALSE, 6);
|
||||
gtk_table_attach (GTK_TABLE (table), toggle_hbox, 1, 3, 2, 3,
|
||||
GTK_FILL, GTK_FILL, 0, 0);
|
||||
gtk_widget_show (toggle_hbox);
|
||||
|
@ -528,7 +528,7 @@ warp_dialog (GimpDrawable *drawable)
|
|||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle),
|
||||
dvals.wrap_type == BLACK);
|
||||
|
||||
toggle = gtk_radio_button_new_with_label (group, _("FG color"));
|
||||
toggle = gtk_radio_button_new_with_label (group, _("Foreground color"));
|
||||
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (toggle));
|
||||
gtk_box_pack_start (GTK_BOX (toggle_hbox), toggle, FALSE, FALSE, 0);
|
||||
gtk_widget_show (toggle);
|
||||
|
|
Loading…
Reference in New Issue