diff options
author | Mike Fulbright <msf@redhat.com> | 2000-08-14 18:55:02 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-08-14 18:55:02 +0000 |
commit | bb4bb7b681b6a76aa7726ad0ac56282cff6f8482 (patch) | |
tree | 6609011e9827d22cd8b5b42d71ca83474a3dd67f /textw | |
parent | a8e9aebf861c54fdf721131df3b055e851ebde72 (diff) | |
download | anaconda-bb4bb7b681b6a76aa7726ad0ac56282cff6f8482.tar.gz anaconda-bb4bb7b681b6a76aa7726ad0ac56282cff6f8482.tar.xz anaconda-bb4bb7b681b6a76aa7726ad0ac56282cff6f8482.zip |
Made partition list to format scrollable, fixes bug #15767
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partitioning_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partitioning_text.py b/textw/partitioning_text.py index 31db5a500..961915448 100644 --- a/textw/partitioning_text.py +++ b/textw/partitioning_text.py @@ -242,7 +242,7 @@ class FormatWindow: mounts = todo.fstab.formattablePartitions() height = min (screen.height - 12, len (mounts)) - ct = CheckboxTree(height = height) + ct = CheckboxTree(height = height, scroll = 1) gotOne = 0 for (mount, dev, fstype, format, size) in mounts: |