From: gouldtj Date: Mon, 4 Feb 2008 17:54:54 +0000 (+0000) Subject: r17818@shi: ted | 2008-01-31 09:20:06 -0800 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e858f4d0cd295d2faa852dc50bb1cdb2f01e651c;p=inkscape.git r17818@shi: ted | 2008-01-31 09:20:06 -0800 Locking on both types of execution --- diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp index dbd750ee9..76af73ed3 100644 --- a/src/extension/effect.cpp +++ b/src/extension/effect.cpp @@ -251,7 +251,9 @@ Effect::effect (Inkscape::UI::View::View * doc) ExecutionEnv executionEnv(this, doc, NULL); + timer->lock(); executionEnv.run(); + timer->unlock(); return; }