diff options
Diffstat (limited to 'src/extension/execution-env.cpp')
| -rw-r--r-- | src/extension/execution-env.cpp | 18 |
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; } |
