summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/bitmap/imagemagick.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2009-01-28 21:12:57 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2009-01-28 21:12:57 +0000
commit117db9934662c3ed36150fa3057bb787bd8d4065 (patch)
tree8eb23d5a10152cb8feef56b6e93cadbc17b99fb3 /src/extension/internal/bitmap/imagemagick.cpp
parent* [INTL: sk] Slovak update by Ivan Masar (diff)
downloadinkscape-117db9934662c3ed36150fa3057bb787bd8d4065.tar.gz
inkscape-117db9934662c3ed36150fa3057bb787bd8d4065.zip
since imagemagic effects cannot be cancelled midway, trying to do so often crashes; the fix is to disallow UI interaction while it works, at least until we implement a way to safely cancel such effects
(bzr r7198)
Diffstat (limited to 'src/extension/internal/bitmap/imagemagick.cpp')
-rw-r--r--src/extension/internal/bitmap/imagemagick.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/internal/bitmap/imagemagick.cpp b/src/extension/internal/bitmap/imagemagick.cpp
index 0be324f42..402e0c973 100644
--- a/src/extension/internal/bitmap/imagemagick.cpp
+++ b/src/extension/internal/bitmap/imagemagick.cpp
@@ -198,9 +198,9 @@ ImageMagick::effect (Inkscape::Extension::Effect *module, Inkscape::UI::View::Vi
printf("Caught exception: %s \n", error_.what());
}
- while(Gtk::Main::events_pending()) {
- Gtk::Main::iteration();
- }
+ //while(Gtk::Main::events_pending()) {
+ // Gtk::Main::iteration();
+ //}
}
}