summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2006-08-18 19:39:27 +0000
committerPeter Jones <pjones@redhat.com>2006-08-18 19:39:27 +0000
commit4517388da21ffbe98b7a20233f17e9ad6ec1eda4 (patch)
tree255cde265465690a5bd622464c6fa8e9c8acc971
parent66c337448b30f42068c6448df5402bb79c2968af (diff)
downloadanaconda-4517388da21ffbe98b7a20233f17e9ad6ec1eda4.tar.gz
anaconda-4517388da21ffbe98b7a20233f17e9ad6ec1eda4.tar.xz
anaconda-4517388da21ffbe98b7a20233f17e9ad6ec1eda4.zip
- make keyboard-only selection of disks to install on work.
-rw-r--r--ChangeLog7
-rw-r--r--iw/partition_ui_helpers_gui.py3
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 23f1897e9..b73229a26 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-08-18 Peter Jones <pjones@redhat.com>
+
+ * iw/partition_ui_helpers_gui.py (WideCheckList.__init__): Don't set
+ the selection mode to gtk.SELECTION_NONE. AFAICT, all this does is
+ make it so you can't check or uncheck drives for installation using
+ only the keyboard.
+
2006-08-18 Chris Lumens <clumens@redhat.com>
* partRequests.py (LogicalVolumeRequestSpec.sanityCheckRequest): Skip
diff --git a/iw/partition_ui_helpers_gui.py b/iw/partition_ui_helpers_gui.py
index 892890c7e..fd19cc494 100644
--- a/iw/partition_ui_helpers_gui.py
+++ b/iw/partition_ui_helpers_gui.py
@@ -45,9 +45,6 @@ class WideCheckList(checklist.CheckList):
checklist.CheckList.__init__(self, columns=columns,
custom_store=store)
- selection = self.get_selection()
- selection.set_mode(gtk.SELECTION_NONE)
-
# make checkbox column wider
column = self.get_column(0)
column.set_fixed_width(75)