diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-15 16:10:50 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-15 16:10:50 +0000 |
commit | 335f6088e695a519be9666a5ca90301475f415fc (patch) | |
tree | 6fd247c6fd9c6628997cbb921bfa3040beeb1947 /iw | |
parent | 654d9496557bee2906a56d41acf72714902c7cfe (diff) | |
download | anaconda-335f6088e695a519be9666a5ca90301475f415fc.tar.gz anaconda-335f6088e695a519be9666a5ca90301475f415fc.tar.xz anaconda-335f6088e695a519be9666a5ca90301475f415fc.zip |
fix up matt partitioning by making the new ones identify themselves properly (51820)
Diffstat (limited to 'iw')
-rw-r--r-- | iw/partition_gui.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index 080329b70..87ce75f99 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -1310,6 +1310,8 @@ class PartitionWindow(InstallWindow): if request: if type == "RAID": self.editRaidRequest(request) + elif type == "NEW": + self.editPartitionRequest(request, isNew = 1) else: self.editPartitionRequest(request) |