don't make "select-invert" insensitive if there is no selection.

2004-05-14  Michael Natterer  <mitch@gimp.org>

	* app/actions/select-actions.c (select_actions_update): don't
	make "select-invert" insensitive if there is no selection.
This commit is contained in:
Michael Natterer 2004-05-14 13:43:48 +00:00 committed by Michael Natterer
parent 1aa04995d6
commit 8252e7742c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-05-14 Michael Natterer <mitch@gimp.org>
* app/actions/select-actions.c (select_actions_update): don't
make "select-invert" insensitive if there is no selection.
2004-05-14 Sven Neumann <sven@gimp.org>
* plug-ins/common/aa.c

View File

@ -154,7 +154,7 @@ select_actions_update (GimpActionGroup *group,
SET_SENSITIVE ("select-all", drawable);
SET_SENSITIVE ("select-none", drawable && sel);
SET_SENSITIVE ("select-invert", drawable && sel);
SET_SENSITIVE ("select-invert", drawable);
SET_SENSITIVE ("select-from-vectors", vectors);
SET_SENSITIVE ("select-float", drawable && sel);