diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-03-10 20:38:54 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-03-10 20:38:54 +0000 |
| commit | a61eeab5c467491697237cb9c416751198f45bbc (patch) | |
| tree | 24ce0cce3b733334c37c4f50266f471f354ea7a7 /src/verbs.cpp | |
| parent | patch by Albin Sunnanbo for 168072 (diff) | |
| download | inkscape-a61eeab5c467491697237cb9c416751198f45bbc.tar.gz inkscape-a61eeab5c467491697237cb9c416751198f45bbc.zip | |
fix "last effect settings..." that used to run the effect immediately.
(bzr r5044)
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 5 |
1 files 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; |
