summaryrefslogtreecommitdiffstats
path: root/src/extension/execution-env.cpp
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-07-21 17:03:14 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-08-31 14:50:38 +0000
commit68a6771cd153a06d99c84901330e0c30fccfb9b7 (patch)
treefaf96a987d52f5b45c4dd865908425b4331df6f0 /src/extension/execution-env.cpp
parentRemove unused and disabled "help" feature for extensions (diff)
downloadinkscape-68a6771cd153a06d99c84901330e0c30fccfb9b7.tar.gz
inkscape-68a6771cd153a06d99c84901330e0c30fccfb9b7.zip
Remove effectively unused "silent" option from extensions.
See also https://gitlab.com/inkscape/inkscape/merge_requests/698
Diffstat (limited to 'src/extension/execution-env.cpp')
-rw-r--r--src/extension/execution-env.cpp18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/extension/execution-env.cpp b/src/extension/execution-env.cpp
index a2bae3832..9293e5655 100644
--- a/src/extension/execution-env.cpp
+++ b/src/extension/execution-env.cpp
@@ -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;
}