diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-07-11 23:27:15 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-07-11 23:27:15 +0000 |
| commit | d5fd04b98c8d39c4e6824a19d3dd758051f52e09 (patch) | |
| tree | 327373a55dbe51fcc4ab7a2dc79ac36a7e71c2ef | |
| parent | d2a2c01f25fe43be323357b041b610f7a3e46142 (diff) | |
| download | enigma2-d5fd04b98c8d39c4e6824a19d3dd758051f52e09.tar.gz enigma2-d5fd04b98c8d39c4e6824a19d3dd758051f52e09.zip | |
do not display entries which are not accessible from keys
| -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 |
