From 8252e7742c40538e83721223a00a860383842577 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Fri, 14 May 2004 13:43:48 +0000 Subject: [PATCH] don't make "select-invert" insensitive if there is no selection. 2004-05-14 Michael Natterer * app/actions/select-actions.c (select_actions_update): don't make "select-invert" insensitive if there is no selection. --- ChangeLog | 5 +++++ app/actions/select-actions.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4a6fce516e..d867a47000 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-14 Michael Natterer + + * app/actions/select-actions.c (select_actions_update): don't + make "select-invert" insensitive if there is no selection. + 2004-05-14 Sven Neumann * plug-ins/common/aa.c diff --git a/app/actions/select-actions.c b/app/actions/select-actions.c index 7ebe7e838d..9b0497ba08 100644 --- a/app/actions/select-actions.c +++ b/app/actions/select-actions.c @@ -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);