Hi List:
I found this one as should be resolved for FC7. I think the patch makes
it happen. tested it, and everything seems to be fine. The diff is
attached. It basically fixes the lack of a acceleration key for the
logical volume list in the "Make LVM volume group" window.
hope it helps.
I have also posted my comments on the bug.
regards
--- lvm_dialog_gui.py-11.2.0.40 2007-03-29 17:35:12.000000000 +0200
+++ lvm_dialog_gui.py 2007-03-29 17:34:55.000000000 +0200
@@ -1116,7 +1116,8 @@
# 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_text_with_mnemonic("_Logical Volumes")
+ l.set_mnemonic_widget(self.logvollist)
frame = gtk.Frame()
frame.set_label_widget(l)
frame.add(lvtable)