menus/image-menu.xml.in app/actions/image-actions.c
* menus/image-menu.xml.in * app/actions/image-actions.c * app/actions/plug-in-actions.c * plug-ins/common/compose.c * plug-ins/common/decompose.c * plug-ins/common/vinvert.c: Remove erroneous extra *compose entries, and move *compose into a Components submenu (re IRC discussion); move Value Invert to near Invert (suggested by mitch)
This commit is contained in:
parent
d6430b9595
commit
3cff59d7ef
6 changed files with 21 additions and 8 deletions
11
ChangeLog
11
ChangeLog
|
|
@ -1,3 +1,14 @@
|
|||
2005-08-16 Akkana Peck <akkana@cvs.gnome.org>
|
||||
* menus/image-menu.xml.in
|
||||
* app/actions/image-actions.c
|
||||
* app/actions/plug-in-actions.c
|
||||
* plug-ins/common/compose.c
|
||||
* plug-ins/common/decompose.c
|
||||
* plug-ins/common/vinvert.c:
|
||||
Remove erroneous extra *compose entries, and move *compose into
|
||||
a Components submenu (re IRC discussion); move Value Invert to
|
||||
near Invert (suggested by mitch)
|
||||
|
||||
2005-08-16 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/widgets/gimpcontainerview.[ch]: added utility function
|
||||
|
|
|
|||
|
|
@ -63,6 +63,7 @@ static GimpActionEntry plug_in_actions[] =
|
|||
{ "plug-in-blur-menu", NULL, N_("_Blur") },
|
||||
{ "plug-in-colors-menu", NULL, N_("_Colors") },
|
||||
{ "plug-in-colors-map-menu", NULL, N_("Ma_p") },
|
||||
{ "plug-in-colors-components-menu", NULL, N_("_Components") },
|
||||
{ "plug-in-noise-menu", NULL, N_("_Noise") },
|
||||
{ "plug-in-edge-detect-menu", NULL, N_("Edge-De_tect") },
|
||||
{ "plug-in-enhance-menu", NULL, N_("En_hance") },
|
||||
|
|
|
|||
|
|
@ -439,7 +439,9 @@
|
|||
<menuitem action="tools-posterize" />
|
||||
<separator />
|
||||
<menuitem action="drawable-desaturate" />
|
||||
<menuitem action="drawable-invert" />
|
||||
<placeholder name="Invert">
|
||||
<menuitem action="drawable-invert" />
|
||||
</placeholder>
|
||||
<menu action="layers-colors-auto-menu" name="Auto">
|
||||
<menuitem action="drawable-equalize" />
|
||||
<menuitem action="drawable-levels-stretch" />
|
||||
|
|
@ -450,6 +452,8 @@
|
|||
</placeholder>
|
||||
<separator />
|
||||
<menu action="plug-in-colors-map-menu" name="Map" />
|
||||
<menu action="plug-in-colors-components-menu" name="Components" />
|
||||
<separator />
|
||||
<placeholder action="plug-in-colors-menu" name="Color Plug-Ins" />
|
||||
</menu>
|
||||
|
||||
|
|
|
|||
|
|
@ -323,8 +323,7 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register (COMPOSE_PROC, "<Image>/Colors");
|
||||
gimp_plugin_menu_register (COMPOSE_PROC, "<Image>/Colors/Image Mode");
|
||||
gimp_plugin_menu_register (COMPOSE_PROC, "<Image>/Colors/Components");
|
||||
|
||||
gimp_install_procedure (DRAWABLE_COMPOSE_PROC,
|
||||
"Compose an image from multiple drawables of gray images",
|
||||
|
|
@ -355,8 +354,7 @@ query (void)
|
|||
G_N_ELEMENTS (recompose_args), 0,
|
||||
recompose_args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (RECOMPOSE_PROC, "<Image>/Colors");
|
||||
gimp_plugin_menu_register (RECOMPOSE_PROC, "<Image>/Colors/Image Mode");
|
||||
gimp_plugin_menu_register (RECOMPOSE_PROC, "<Image>/Colors/Components");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -253,8 +253,7 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors");
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors/Image Mode");
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors/Components");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors");
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors/Invert");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue