Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-01-13 02:00:27 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-01-13 02:00:27 +0300
commit665661946418ce6c0c101983cf78925f548657bb (patch)
tree623084d7f6038c566029fe99d0f6cd8cd3b12c9c /httpupload
parent07af0f4339c92c15686baa5757d8cb49e1791093 (diff)
[httpupload] Set parent for progresswindow
Diffstat (limited to 'httpupload')
-rw-r--r--httpupload/httpupload.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/httpupload/httpupload.py b/httpupload/httpupload.py
index 9d40288..a7fb278 100644
--- a/httpupload/httpupload.py
+++ b/httpupload/httpupload.py
@@ -619,6 +619,7 @@ class ProgressWindow:
self.xml = gtkgui_helpers.get_gtk_builder(self.plugin.local_file_path('upload_progress_dialog.ui'))
self.messages_queue = messages_queue
self.dialog = self.xml.get_object('progress_dialog')
+ self.dialog.set_transient_for(plugin.chat_control.parent_win.window)
self.label = self.xml.get_object('label')
self.cancel_button = self.xml.get_object('close_button')
self.label.set_markup('<big>' + during_text + '</big>')