summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2017-11-26 22:03:19 +0000
committerEduard Braun <eduard.braun2@gmx.de>2017-11-30 19:56:11 +0000
commit392723017aebe8bcfcefa73107b65af0d29acd00 (patch)
treeacd2fdc88380cdfd90094b1269be839e50766734 /src
parentMake file update dialog transient for the main window (diff)
downloadinkscape-392723017aebe8bcfcefa73107b65af0d29acd00.tar.gz
inkscape-392723017aebe8bcfcefa73107b65af0d29acd00.zip
Make bitmap export progress dialog transient for the main window
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/export.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/dialog/export.cpp b/src/ui/dialog/export.cpp
index 8c710c8e5..53629a1a2 100644
--- a/src/ui/dialog/export.cpp
+++ b/src/ui/dialog/export.cpp
@@ -901,6 +901,7 @@ void Export::setExporting(bool exporting, Glib::ustring const &text)
Gtk::Dialog * Export::create_progress_dialog (Glib::ustring progress_text) {
Gtk::Dialog *dlg = new Gtk::Dialog(_("Export in progress"), TRUE);
+ dlg->set_transient_for( *(INKSCAPE.active_desktop()->getToplevel()) );
Gtk::ProgressBar *prg = new Gtk::ProgressBar ();
prg->set_text(progress_text);