diff options
Diffstat (limited to 'menuconfig.py')
| -rwxr-xr-x | menuconfig.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/menuconfig.py b/menuconfig.py index accaf6f..3944070 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -2006,7 +2006,8 @@ def _sorted_sc_nodes(cached_nodes=[]): # Add choice nodes - choices = sorted(_kconf.choices, key=lambda choice: choice.name or "") + choices = sorted(_kconf.unique_choices, + key=lambda choice: choice.name or "") cached_nodes += sorted( [node |
