diff options
author | Joel Andres Granados <joel@dhcp-lab-115.englab.brq.redhat.com> | 2007-11-01 22:17:47 +0100 |
---|---|---|
committer | Joel Andres Granados <joel@dhcp-lab-115.englab.brq.redhat.com> | 2007-11-01 22:17:47 +0100 |
commit | 5b0acf7dd152bc3318abe5b633f08f0c8ef92af4 (patch) | |
tree | f02d2e7f6f4997baa5c5e584b993b660d263e8c3 | |
parent | 726a485e58706b70c8fb2b9d4febe938a7c88963 (diff) | |
download | anaconda-5b0acf7dd152bc3318abe5b633f08f0c8ef92af4.tar.gz anaconda-5b0acf7dd152bc3318abe5b633f08f0c8ef92af4.tar.xz anaconda-5b0acf7dd152bc3318abe5b633f08f0c8ef92af4.zip |
Add accelerator keys to the Volume Group window. (#206479).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | iw/lvm_dialog_gui.py | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2007-11-01 Joel Granados <jgranado@redhat.com> + * iw/lvm_dialog_gui.py: Add accelerator key to the Volume Group + window. (#206479) + 2007-10-30 Chris Lumens <clumens@redhat.com> * anaconda (setVNCFromKickstart): Fix indentation. diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py index ae9c614a5..5d810642b 100644 --- a/iw/lvm_dialog_gui.py +++ b/iw/lvm_dialog_gui.py @@ -1115,7 +1115,8 @@ class VolumeGroupEditor: # pack all logical volumne stuff in a frame lvtable.set_border_width(12) l = gtk.Label() - l.set_markup("<b>%s</b>" %(_("Logical Volumes"),)) + l.set_markup_with_mnemonic("<b>%s</b>" %(_("_Logical Volumes"),)) + l.set_mnemonic_widget(self.logvollist) frame = gtk.Frame() frame.set_label_widget(l) frame.add(lvtable) |