Skip to content
Snippets Groups Projects
Commit adce366c authored by Dicson's avatar Dicson
Browse files

Set 'sizing' to Type column in ACE. Make 'Value' column expandable. Fixes #7446

parent 07290e7b
No related branches found
No related tags found
No related merge requests found
......@@ -116,13 +116,13 @@ class AdvancedConfigurationWindow(object):
col.set_cell_data_func(renderer_text, self.cb_value_column_data)
col.props.resizable = True
# set max width only for initializing the treeview.
col.set_max_width(250)
gobject.idle_add(col.set_max_width, -1)
col.set_property('expand',True)
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('sizing',gtk.TREE_VIEW_COLUMN_AUTOSIZE)
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