diff options
author | David Lehman <dlehman@redhat.com> | 2009-12-09 01:23:11 -0600 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2009-12-09 15:12:59 -0600 |
commit | 414e70f9d87771eeb45875fea69b54d7ce9444af (patch) | |
tree | cdad5e9bab52f266015b55ca0f5c50a398180495 /iw/raid_dialog_gui.py | |
parent | 429d97802d036413ddfc3f60148a39618e032b6e (diff) | |
download | anaconda-414e70f9d87771eeb45875fea69b54d7ce9444af.tar.gz anaconda-414e70f9d87771eeb45875fea69b54d7ce9444af.tar.xz anaconda-414e70f9d87771eeb45875fea69b54d7ce9444af.zip |
Add support for whole-disk formatting.
Whole-disk formats are recognized but cannot be edited in any way.
Diffstat (limited to 'iw/raid_dialog_gui.py')
-rw-r--r-- | iw/raid_dialog_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/raid_dialog_gui.py b/iw/raid_dialog_gui.py index 8431e71a7..086c562ee 100644 --- a/iw/raid_dialog_gui.py +++ b/iw/raid_dialog_gui.py @@ -812,7 +812,7 @@ class RaidCloneDialog: lbl = gtk.Label(_("Source Drive:")) lbl.set_alignment(0.0, 0.0) box.pack_start(lbl, padding=5) - (sw, self.sourceView) = self.createDriveList(storage.disks) + (sw, self.sourceView) = self.createDriveList(storage.partitioned) selection = self.sourceView.get_selection() selection.set_mode(gtk.SELECTION_SINGLE) box.pack_start(sw, padding=5) @@ -820,7 +820,7 @@ class RaidCloneDialog: lbl = gtk.Label(_("Target Drive(s):")) lbl.set_alignment(0.0, 0.0) box.pack_start(lbl, padding=5) - (sw, self.targetView) = self.createDriveList(storage.disks) + (sw, self.targetView) = self.createDriveList(storage.partitioned) selection = self.targetView.get_selection() selection.set_mode(gtk.SELECTION_MULTIPLE) box.pack_start(sw, padding=5) |