summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2006-02-22 19:38:35 +0000
committerPeter Jones <pjones@redhat.com>2006-02-22 19:38:35 +0000
commitda4e01fa60d0b0b0844e194e8cde5d32800b56d1 (patch)
tree87ccf9ad1508e3eb118bf4bcb5e8ae87e9e42d7b /iw
parent14a11fddc233d18f266f223d12db4fe52edde851 (diff)
downloadanaconda-da4e01fa60d0b0b0844e194e8cde5d32800b56d1.tar.gz
anaconda-da4e01fa60d0b0b0844e194e8cde5d32800b56d1.tar.xz
anaconda-da4e01fa60d0b0b0844e194e8cde5d32800b56d1.zip
* iw/bootloader_main_gui.py (MainBootLoaderWindow): Don't use
underline in device names for hotkeys. * iw/bootlocwidget.py (BootloaderLocationWidget): same
Diffstat (limited to 'iw')
-rw-r--r--iw/bootloader_main_gui.py1
-rw-r--r--iw/bootlocwidget.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/iw/bootloader_main_gui.py b/iw/bootloader_main_gui.py
index 50076839b..ee0e6e188 100644
--- a/iw/bootloader_main_gui.py
+++ b/iw/bootloader_main_gui.py
@@ -118,6 +118,7 @@ class MainBootloaderWindow(InstallWindow):
self.grub_radio = gtk.RadioButton(None, _("The %s boot loader will be "
"installed on /dev/%s.") %
("GRUB", self.bldev))
+ self.grub_radio.set_use_underline(False)
vb.pack_start(self.grub_radio)
self.none_radio = gtk.RadioButton(self.grub_radio,
_("No boot loader will be installed."))
diff --git a/iw/bootlocwidget.py b/iw/bootlocwidget.py
index 31bdd634f..f87d97041 100644
--- a/iw/bootlocwidget.py
+++ b/iw/bootlocwidget.py
@@ -62,6 +62,8 @@ class BootloaderLocationWidget:
radio.set_active(True)
else:
radio.set_active(False)
+ if not radio is None:
+ radio.set_use_underline(False)
spacer = gtk.Label("")
spacer.set_size_request(25, 1)
@@ -127,6 +129,7 @@ class BootloaderLocationWidget:
(radio, olddev, desc) = self.bootDevices["mbr"]
radio.set_label("/dev/%s %s" % (firstDrive, _(desc)))
+ radio.set_use_underline(False)
self.bootDevices["mbr"] = (radio, firstDrive, desc)
def getWidget(self):