changeset f0bc333e577e in /home/hg/repos/gajim

author: Yann Leboulanger <aste...@lagaule.org>
branches: gajim_0.16
details:http://hg.gajim.org/gajim?cmd=changeset;node=f0bc333e577e
description: better behaviour of column width in ACE. Fixes #7446

diffstat:

 src/advanced_configuration_window.py |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r 46a815d57b77 -r f0bc333e577e src/advanced_configuration_window.py
--- a/src/advanced_configuration_window.py      Fri Sep 13 07:30:09 2013 +0200
+++ b/src/advanced_configuration_window.py      Sun Sep 15 11:15:29 2013 +0200
@@ -119,10 +119,13 @@
 
         col.props.resizable = True
         col.set_property('expand',True)
+        col.set_property('sizing',gtk.TREE_VIEW_COLUMN_FIXED)
 
         renderer_text = gtk.CellRendererText()
-        treeview.insert_column_with_attributes(-1, _('Type'),
+        col = treeview.insert_column_with_attributes(-1, _('Type'),
                 renderer_text, text = 2)
+        col.set_property('expand',True)
+        col.set_property('sizing',gtk.TREE_VIEW_COLUMN_FIXED)
 
         treeview.set_model(self.modelfilter)
 
_______________________________________________
Commits mailing list
Commits@gajim.org
http://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to