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

force max width to 250px only when initializing the treeview. Fixes #7446

parent 4d0005a9
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,9 @@ 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)
renderer_text = gtk.CellRendererText()
treeview.insert_column_with_attributes(-1, _('Type'),
......
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