summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-03-23 21:40:19 +0000
committerJeremy Katz <katzj@redhat.com>2007-03-23 21:40:19 +0000
commitbc32614a57bb9df41010ae544e80b219cc11170d (patch)
treead1377ad2eb7fe07e5f1cca23484649d1c2d0a41 /iw
parenta93d6072ec63588a89a36526a8aa74dd5b29082f (diff)
downloadanaconda-bc32614a57bb9df41010ae544e80b219cc11170d.tar.gz
anaconda-bc32614a57bb9df41010ae544e80b219cc11170d.tar.xz
anaconda-bc32614a57bb9df41010ae544e80b219cc11170d.zip
2007-03-23 Jeremy Katz <katzj@redhat.com>
* iw/network_gui.py (NetworkWindow.getScreen): Shorten entry box so that things fit on the screen better.
Diffstat (limited to 'iw')
-rw-r--r--iw/network_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/network_gui.py b/iw/network_gui.py
index 76d3cd5fe..7dc39207c 100644
--- a/iw/network_gui.py
+++ b/iw/network_gui.py
@@ -478,7 +478,7 @@ class NetworkWindow(InstallWindow):
self.hostnameManual = gtk.RadioButton(group=self.hostnameUseDHCP, label=_("_manually"))
tmphbox.pack_start(self.hostnameManual, False, False)
self.hostnameEntry = gtk.Entry()
- self.hostnameEntry.set_width_chars(41)
+ self.hostnameEntry.set_width_chars(32)
tmphbox.pack_start(self.hostnameEntry, False, False)
tmphbox.pack_start(gtk.Label(_('(e.g., host.domain.com)')), False, False)
self.hostnameManual.connect("toggled", self.hostnameManualCB, None)