2008-02-02 Raphael Ackermann <raphael.ackermann@gmail.com>

* src/ExportOptions.py: fix mnemonics for filter

svn: r9990
This commit is contained in:
Raphael Ackermann 2008-02-03 21:33:41 +00:00
parent 5ae6d584f7
commit 76ddf2bda2
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2008-02-02 Raphael Ackermann <raphael.ackermann@gmail.com>
* src/ExportOptions.py: fix mnemonics for filter
2008-02-02 Brian Matherly <brian@gramps-project.org>
* src/plugins/ExportVCard.py:
* src/plugins/ExportCSV.py:

View File

@ -62,8 +62,12 @@ class WriterOptionBox:
def get_option_box(self):
"""Build up a gtk.Table that contains the standard options."""
table = gtk.Table(3, 2)
label = gtk.Label(_('Filt_er'))
self.filter_obj = gtk.ComboBox()
label = gtk.Label(_('Filt_er'))
label.set_use_underline(True)
label.set_mnemonic_widget(self.filter_obj)
self.private_check = gtk.CheckButton(
_('_Do not include records marked private'))
self.restrict_check = gtk.CheckButton(