From 68a6771cd153a06d99c84901330e0c30fccfb9b7 Mon Sep 17 00:00:00 2001 From: Patrick Storz Date: Sun, 21 Jul 2019 19:03:14 +0200 Subject: Remove effectively unused "silent" option from extensions. See also https://gitlab.com/inkscape/inkscape/merge_requests/698 --- src/extension/execution-env.cpp | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'src/extension/execution-env.cpp') 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; } -- cgit v1.2.3