Skip to content

Commit

Permalink
Fix accelerator conflicts in elements list
Browse files Browse the repository at this point in the history
Change shortcut for "Filter by" field in the elements list from ALT+E to ALT+Y to avoid conflicts with "Errors" when opened while using browse mode in Microsoft Word.

Fixes #8842
  • Loading branch information
lukaszgo1 authored and feerrenrut committed May 10, 2019
1 parent 9ebb356 commit 11effcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/browseMode.py
Expand Up @@ -825,7 +825,7 @@ def __init__(self, document):

# Translators: The label of an editable text field to filter the elements
# in the browse mode Elements List dialog.
filterText = _("Filt&er by:")
filterText = _("Filter b&y:")
labeledCtrl = gui.guiHelper.LabeledControlHelper(self, filterText, wx.TextCtrl)
self.filterEdit = labeledCtrl.control
self.filterEdit.Bind(wx.EVT_TEXT, self.onFilterEditTextChange)
Expand Down

0 comments on commit 11effcd

Please sign in to comment.