diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2011-01-31 16:48:10 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2011-01-31 16:48:10 +0000 |
| commit | 68a87c54e8134effdb8169d895d434441d3b2299 (patch) | |
| tree | c1f6f907f94b3a43634c84c2f230b8795cc9481c /src | |
| parent | emf import : recalculate text alignment for rotated text (Bug 341847) (diff) | |
| download | inkscape-68a87c54e8134effdb8169d895d434441d3b2299.tar.gz inkscape-68a87c54e8134effdb8169d895d434441d3b2299.zip | |
Extensions. Fix for Bug #668895 (Extensions with <check> tags fail to load).
(bzr r10020)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/implementation/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index bc143fd14..428ee626f 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -236,7 +236,7 @@ bool Script::check_existence(const std::string &command) } //Don't search when it is an absolute path. */ - if (!Glib::path_is_absolute(command)) { + if (Glib::path_is_absolute(command)) { if (Glib::file_test(command, Glib::FILE_TEST_EXISTS)) { return true; } else { |
