better behaviour of column width in ACE. Fixes #7446
This commit is contained in:
父節點
3359bcbf62
當前提交
0ffd998050
共有 1 個文件被更改,包括 3 次插入 和 2 次删除
|
|
@ -116,13 +116,14 @@ class AdvancedConfigurationWindow(object):
|
|||
col.set_cell_data_func(renderer_text, self.cb_value_column_data)
|
||||
|
||||
col.props.resizable = True
|
||||
col.set_max_width(250)
|
||||
col.set_property('expand',True)
|
||||
col.set_property('sizing',gtk.TREE_VIEW_COLUMN_FIXED)
|
||||
|
||||
renderer_text = gtk.CellRendererText()
|
||||
col = treeview.insert_column_with_attributes(-1, _('Type'),
|
||||
renderer_text, text = 2)
|
||||
col.set_property('sizing',gtk.TREE_VIEW_COLUMN_AUTOSIZE)
|
||||
col.set_property('expand',True)
|
||||
col.set_property('sizing',gtk.TREE_VIEW_COLUMN_FIXED)
|
||||
|
||||
treeview.set_model(self.modelfilter)
|
||||
|
||||
|
|
|
|||
載入中…
Add table
Reference in a new issue