diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-04-27 22:07:00 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-04-27 22:07:00 +0000 |
commit | b0ee436e59dac718c6ee96a7fa23cadf75b8b065 (patch) | |
tree | 26907d846230d121b15dd7b3cb479a2aa0bf5024 | |
parent | f074f6e5feaad861fb65df200063f278713c440c (diff) | |
download | anaconda-b0ee436e59dac718c6ee96a7fa23cadf75b8b065.tar.gz anaconda-b0ee436e59dac718c6ee96a7fa23cadf75b8b065.tar.xz anaconda-b0ee436e59dac718c6ee96a7fa23cadf75b8b065.zip |
2005-04-27 Jeremy Katz <katzj@redhat.com>
* textw/partition_text.py (PartitionWindow.__call__): Give a
little bit more room for cylinder #s (#119767)
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | textw/partition_text.py | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2005-04-27 Jeremy Katz <katzj@redhat.com> + * textw/partition_text.py (PartitionWindow.__call__): Give a + little bit more room for cylinder #s (#119767) + * gui.py (InstallInterface.run): Don't set SUPPORTED unnecessarily (#155847) * language.py (Language.getDefault): Likewise. diff --git a/textw/partition_text.py b/textw/partition_text.py index 2282815f2..f60cc10c9 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -1430,7 +1430,7 @@ class PartitionWindow: self.g = GridFormHelp(screen, _("Partitioning"), "partition", 1, 5) self.lb = CListbox(height=10, cols=6, - col_widths=[17,5,5,7,10,12], + col_widths=[17,6,6,7,10,12], scroll=1, returnExit = 1, width=70, col_pad=2, col_labels=[_('Device'), _('Start'), _('End'), _('Size'), _('Type'), _('Mount Point')], |