diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | iw/autopart_type.py | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2006-02-28 David Cantrell <dcantrell@redhat.com> + + * iw/autopart_type.py: Make the partitioning type combo box wider. + 2006-02-28 Jeremy Katz <katzj@redhat.com> * yuminstall.py (YumSorter.__init__): Define conditionals in the class diff --git a/iw/autopart_type.py b/iw/autopart_type.py index 4cb10f5f5..44e6a2863 100644 --- a/iw/autopart_type.py +++ b/iw/autopart_type.py @@ -106,8 +106,8 @@ class PartitionTypeWindow(InstallWindow): cell = gtk.CellRendererText() self.combo.pack_start(cell, True) self.combo.set_attributes(cell, text = 0) - cell.set_property("wrap-width", 475) - self.combo.set_size_request(450, -1) + cell.set_property("wrap-width", 525) + self.combo.set_size_request(480, -1) store = gtk.TreeStore(gobject.TYPE_STRING, gobject.TYPE_INT) self.combo.set_model(store) |