summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
Diffstat (limited to 'iw')
-rw-r--r--iw/partition_ui_helpers_gui.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/iw/partition_ui_helpers_gui.py b/iw/partition_ui_helpers_gui.py
index fd19cc494..817662a1d 100644
--- a/iw/partition_ui_helpers_gui.py
+++ b/iw/partition_ui_helpers_gui.py
@@ -45,10 +45,12 @@ class WideCheckList(checklist.CheckList):
checklist.CheckList.__init__(self, columns=columns,
custom_store=store)
- # make checkbox column wider
- column = self.get_column(0)
- column.set_fixed_width(75)
- column.set_alignment(0.0)
+ # make checkbox column wider
+ column = self.get_column(3)
+ self.set_expander_column(column)
+ column = self.get_column(0)
+ column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
+ column.set_fixed_width(25)
self.clickCB = clickCB