diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-08-29 22:22:23 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-08-29 22:22:23 +0200 |
| commit | 78682a8e3c4fefffec281f13168cec5c297827bb (patch) | |
| tree | 73a50d423e6224915c9b3580c62aafcdde084431 | |
| parent | a89bb5786f7c8f56229972280f54786d244a4134 (diff) | |
menuconfig: Fix outdated comment re. show-all mode
Invisible symbols are no longer shown in red outside of show-all mode.
| -rwxr-xr-x | menuconfig.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/menuconfig.py b/menuconfig.py index 392bc1b..dfc4c90 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -1046,8 +1046,7 @@ def _shown_nodes(menu): # Always show the node if it is the root of an implicit submenu # with visible items, even when the node itself is invisible. This # can happen e.g. if the symbol has an optional prompt - # ('prompt "foo" if COND') that is currently invisible. The node - # will appear in the 'show-all' style (red). + # ('prompt "foo" if COND') that is currently invisible. if shown(node) or shown_children: res.append(node) |
