diff options
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
| -rw-r--r-- | lib/python/Components/HelpMenuList.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index b1a31b8b..99bd536d 100644 --- a/lib/python/Components/HelpMenuList.py +++ b/lib/python/Components/HelpMenuList.py @@ -21,6 +21,10 @@ class HelpMenuList(GUIComponent): buttons = queryKeyBinding(context, action) + # do not display entries which are not accessible from keys + if not len(buttons): + continue + name = None flags = 0 |
