From 51805bc457de7139a5854951f09d5ffc4b750c2d Mon Sep 17 00:00:00 2001 From: johanengelen Date: Mon, 10 Mar 2008 20:38:54 +0000 Subject: [PATCH] fix "last effect settings..." that used to run the effect immediately. --- src/verbs.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/verbs.cpp b/src/verbs.cpp index 674ccdd82..f4428a2ac 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -1970,9 +1970,8 @@ EffectLastVerb::perform(SPAction *action, void *data, void */*pdata*/) switch ((long) data) { case SP_VERB_EFFECT_LAST_PREF: - if (!effect->prefs(current_view)) - return; - /* Note: fall through */ + effect->prefs(current_view); + break; case SP_VERB_EFFECT_LAST: effect->effect(current_view); break; -- 2.30.2