diff options
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 0e19957..eaa9af8 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -3472,10 +3472,11 @@ class Choice(object): # Warning: See Symbol._rec_invalidate(), and note that this is a hidden # function call (property magic) if self.tri_value != 2: + # Not in y mode, so no selection return None # Use the user selection if it's visible - if self.user_selection and self.user_selection.visibility == 2: + if self.user_selection and self.user_selection.visibility: return self.user_selection # Otherwise, check if we have a default |
