removed "colors-transform-menu".
2005-10-28 Michael Natterer <mitch@gimp.org> * app/actions/image-actions.c: removed "colors-transform-menu". * menus/image-menu.xml.in: revamped again: Moved desaturate and the invert items to the toplevel, into a separator-enclosed group. Changed Modify to a placeholder again. Things that have no useful category can't go to a sub-menu, so please don't invent one just for the sake of it. * plug-ins/common/channel_mixer.c: -> Colors/Components * plug-ins/common/vinvert.c: -> Colors/Invert
This commit is contained in:

committed by
Michael Natterer

parent
f956fd857b
commit
bc3bd4d63f
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
||||
2005-10-28 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/actions/image-actions.c: removed "colors-transform-menu".
|
||||
|
||||
* menus/image-menu.xml.in: revamped again: Moved desaturate and
|
||||
the invert items to the toplevel, into a separator-enclosed group.
|
||||
Changed Modify to a placeholder again. Things that have no useful
|
||||
category can't go to a sub-menu, so please don't invent one just
|
||||
for the sake of it.
|
||||
|
||||
* plug-ins/common/channel_mixer.c: -> Colors/Components
|
||||
* plug-ins/common/vinvert.c: -> Colors/Invert
|
||||
|
||||
2005-10-28 Carol Spears <carol@gimp.org>
|
||||
|
||||
* app/actions/image-actions.c: Changed colors-modify-menu to
|
||||
|
@ -67,7 +67,6 @@ static GimpActionEntry image_actions[] =
|
||||
{ "colors-auto-menu", NULL, N_("_Auto") },
|
||||
{ "colors-map-menu", NULL, N_("Ma_p") },
|
||||
{ "colors-components-menu", NULL, N_("_Components") },
|
||||
{ "colors-transform-menu", NULL, N_("Trans_form") },
|
||||
|
||||
{ "image-new", GTK_STOCK_NEW,
|
||||
N_("_New..."), "<control>N", NULL,
|
||||
|
@ -441,23 +441,23 @@
|
||||
<menuitem action="tools-levels" />
|
||||
<menuitem action="tools-curves" />
|
||||
<menuitem action="tools-posterize" />
|
||||
<menuitem action="drawable-desaturate"/>
|
||||
<separator />
|
||||
<menuitem action="drawable-desaturate" />
|
||||
<placeholder name="Invert">
|
||||
<menuitem action="drawable-invert"/>
|
||||
<menuitem action="drawable-invert" />
|
||||
</placeholder>
|
||||
<separator />
|
||||
<menu action="colors-auto-menu" name="Auto">
|
||||
<menuitem action="drawable-equalize"/>
|
||||
<menuitem action="drawable-levels-stretch"/>
|
||||
</menu>
|
||||
<menu action="colors-components-menu" name="Components"/>
|
||||
<menu action="colors-map-menu" name="Map"/>
|
||||
<menu action="colors-transform-menu" name="Transform">
|
||||
<menuitem action="drawable-equalize" />
|
||||
<menuitem action="drawable-levels-stretch" />
|
||||
</menu>
|
||||
<menu action="colors-components-menu" name="Components" />
|
||||
<menu action="colors-map-menu" name="Map" />
|
||||
<menu action="colors-info-menu" name="Info">
|
||||
<menuitem action="dialogs-histogram"/>
|
||||
<menuitem action="dialogs-histogram" />
|
||||
</menu>
|
||||
<separator />
|
||||
<placeholder name="Modify" />
|
||||
</menu>
|
||||
|
||||
<menu action="tools-menu" name="Tools">
|
||||
|
@ -186,7 +186,7 @@ query (void)
|
||||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors/Modify");
|
||||
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/Modify/Invert");
|
||||
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors/Invert");
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user