From 76ddf2bda200f8955eccd3f3b7902a2d26be0a1e Mon Sep 17 00:00:00 2001 From: Raphael Ackermann Date: Sun, 3 Feb 2008 21:33:41 +0000 Subject: [PATCH] 2008-02-02 Raphael Ackermann * src/ExportOptions.py: fix mnemonics for filter svn: r9990 --- ChangeLog | 3 +++ src/ExportOptions.py | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c791579c6..a02aee76b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2008-02-02 Raphael Ackermann + * src/ExportOptions.py: fix mnemonics for filter + 2008-02-02 Brian Matherly * src/plugins/ExportVCard.py: * src/plugins/ExportCSV.py: diff --git a/src/ExportOptions.py b/src/ExportOptions.py index d67543423..f0fc066db 100644 --- a/src/ExportOptions.py +++ b/src/ExportOptions.py @@ -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(