diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-03-13 20:03:36 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-03-13 20:03:36 +0000 |
commit | b1e28e099a9c3edfd76abdad0a2442f2649dab7b (patch) | |
tree | df14e60831df47aec3e7a714ee6eff490e835c6c /iw | |
parent | 998a019d6c905c9fe9d966991c8858caeffaa92f (diff) | |
download | anaconda-b1e28e099a9c3edfd76abdad0a2442f2649dab7b.tar.gz anaconda-b1e28e099a9c3edfd76abdad0a2442f2649dab7b.tar.xz anaconda-b1e28e099a9c3edfd76abdad0a2442f2649dab7b.zip |
2006-03-13 Jeremy Katz <katzj@redhat.com>
* iw/lvm_dialog_gui.py (VolumeGroupEditor.createPEOptionMenu): Cap
at 128M instead (#185272)
Diffstat (limited to 'iw')
-rw-r--r-- | iw/lvm_dialog_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py index 6b2700182..e2ddfffcb 100644 --- a/iw/lvm_dialog_gui.py +++ b/iw/lvm_dialog_gui.py @@ -245,8 +245,8 @@ class VolumeGroupEditor: defindex = None actualPE = lvm.getPossiblePhysicalExtents(floor=1024) for curpe in actualPE: - # dont show PE over 64M - if curpe > 65536: + # dont show PE over 128M + if curpe > 131072: continue val = self.prettyFormatPESize(curpe) |