From d62aff20aef6747b84f82e094c7c4f654639293d Mon Sep 17 00:00:00 2001 From: Yevgen Muntyan <17531749+muntyan@users.noreply.github.com> Date: Fri, 22 Dec 2006 03:42:29 -0600 Subject: [PATCH] s/visible/sensitive/ in check_sensitive() --- moo/mooedit/mooeditaction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moo/mooedit/mooeditaction.c b/moo/mooedit/mooeditaction.c index b4d9971f..9dae85cd 100644 --- a/moo/mooedit/mooeditaction.c +++ b/moo/mooedit/mooeditaction.c @@ -272,7 +272,7 @@ moo_edit_action_check_sensitive_real (MooEditAction *action) EggRegex *filter = action->priv->filters[FILTER_SENSITIVE]; if (!action->priv->doc || !filter) - return gtk_action_get_visible (GTK_ACTION (action)); + return gtk_action_get_sensitive (GTK_ACTION (action)); line = get_current_line (action->priv->doc); return egg_regex_match (filter, line, 0);