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-12 23:17:58 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-01-12 23:17:58 +0300
commitf0dc86b923134f6ff28d7d379a38ebb466bcb992 (patch)
tree25de460729e34b783fa70d8ae17b0d0259268515
parentdebcfe7f2af8d70f5a081578e09bbfe4f4b2f64a (diff)
[httpupload] Dont use geometry_hints
It creates Problems with various WindowManagers
-rw-r--r--httpupload/httpupload.py1
-rw-r--r--httpupload/upload_progress_dialog.ui1
2 files changed, 1 insertions, 1 deletions
diff --git a/httpupload/httpupload.py b/httpupload/httpupload.py
index 8773130..1c82f0f 100644
--- a/httpupload/httpupload.py
+++ b/httpupload/httpupload.py
@@ -622,7 +622,6 @@ class ProgressWindow:
self.progressbar = self.xml.get_object('progressbar')
self.progressbar.set_text("")
self.dialog.set_title(title_text)
- self.dialog.set_geometry_hints(min_width=400, min_height=96)
self.dialog.show_all()
self.xml.connect_signals(self)
diff --git a/httpupload/upload_progress_dialog.ui b/httpupload/upload_progress_dialog.ui
index e9f12d1..3254703 100644
--- a/httpupload/upload_progress_dialog.ui
+++ b/httpupload/upload_progress_dialog.ui
@@ -11,6 +11,7 @@
<signal name="delete-event" handler="on_progress_dialog_delete_event" swapped="no"/>
<child internal-child="vbox">
<object class="GtkBox" id="dialog-vbox">
+ <property name="width_request">250</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="orientation">vertical</property>