summaryrefslogtreecommitdiffstats
path: root/src/extension/execution-env.cpp
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-09-01 19:49:18 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-09-01 19:50:16 +0000
commit5e8e0a6bdd15427faa16d6432b9fbd7bbe0d6335 (patch)
tree37dfb161397255903dd32fe27302fb308e5b9d4a /src/extension/execution-env.cpp
parentAdd 'vector-effect' to CSS and attribute lists. (diff)
parentUpdate internal extensions for latest .inx format changes (diff)
downloadinkscape-5e8e0a6bdd15427faa16d6432b9fbd7bbe0d6335.tar.gz
inkscape-5e8e0a6bdd15427faa16d6432b9fbd7bbe0d6335.zip
Extension updates for 1.0 (!808)
Diffstat (limited to 'src/extension/execution-env.cpp')
-rw-r--r--src/extension/execution-env.cpp20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/extension/execution-env.cpp b/src/extension/execution-env.cpp
index ca770e1f6..9293e5655 100644
--- a/src/extension/execution-env.cpp
+++ b/src/extension/execution-env.cpp
@@ -13,7 +13,7 @@
#include <gtkmm/messagedialog.h>
#include "execution-env.h"
-#include "prefdialog.h"
+#include "prefdialog/prefdialog.h"
#include "implementation/implementation.h"
#include "selection.h"
@@ -127,17 +127,15 @@ ExecutionEnv::createWorkingDialog () {
_visibleDialog->signal_response().connect(sigc::mem_fun(this, &ExecutionEnv::workingCanceled));
g_free(dlgmessage);
- if (!_effect->is_silent()){
- Gtk::Dialog *dlg = _effect->get_pref_dialog();
- if (dlg) {
- _visibleDialog->set_transient_for(*dlg);
- } else {
- // ToDo: Do we need to make the window transient for the main window here?
- // Currently imossible to test because of GUI freezing during save,
- // see https://bugs.launchpad.net/inkscape/+bug/967416
- }
- _visibleDialog->show_now();
+ Gtk::Dialog *dlg = _effect->get_pref_dialog();
+ if (dlg) {
+ _visibleDialog->set_transient_for(*dlg);
+ } else {
+ // ToDo: Do we need to make the window transient for the main window here?
+ // Currently imossible to test because of GUI freezing during save,
+ // see https://bugs.launchpad.net/inkscape/+bug/967416
}
+ _visibleDialog->show_now();
return;
}