Skip to content
Snippets Groups Projects
Commit 1a5c4222 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

better behaviour of column width in ACE. Fixes #7446

parent 0c42bfe1
No related branches found
No related tags found
No related merge requests found
......@@ -119,10 +119,13 @@ class AdvancedConfigurationWindow(object):
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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment