summaryrefslogtreecommitdiffstats
path: root/src/extension/effect.cpp
diff options
context:
space:
mode:
authorSergei Izmailov <sergei.a.izmailov@gmail.com>2019-05-27 17:13:14 +0000
committerMartin Owens <doctormo@gmail.com>2019-05-29 01:36:49 +0000
commit40b26e345fc729d5cc89105c437c2b934da8dd0e (patch)
treec321d1d312ca5a8af3d7743fd6148acfae535b95 /src/extension/effect.cpp
parentfeature: Allow effect extensions to disable working dialog (diff)
downloadinkscape-40b26e345fc729d5cc89105c437c2b934da8dd0e.tar.gz
inkscape-40b26e345fc729d5cc89105c437c2b934da8dd0e.zip
Rename "suppress-working-dialog" effect attribute to "application"
Diffstat (limited to 'src/extension/effect.cpp')
-rw-r--r--src/extension/effect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp
index 618b6f84a..d0079e7cc 100644
--- a/src/extension/effect.cpp
+++ b/src/extension/effect.cpp
@@ -63,7 +63,7 @@ Effect::Effect (Inkscape::XML::Node * in_repr, Implementation::Implementation *
if (child->attribute("needs-live-preview") && !strcmp(child->attribute("needs-live-preview"), "false")) {
no_live_preview = true;
}
- if (child->attribute("suppress-working-dialog") && !strcmp(child->attribute("suppress-working-dialog"), "true")) {
+ if (child->attribute("application") && !strcmp(child->attribute("application"), "true")) {
_workingDialog = false;
}
for (Inkscape::XML::Node *effect_child = child->firstChild(); effect_child != nullptr; effect_child = effect_child->next()) {