summaryrefslogtreecommitdiff
path: root/menuconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-04-17 03:21:34 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2019-04-17 03:21:34 +0200
commit13dda5843f79a02f2c6dadc6cfd99ca62679dde3 (patch)
tree4ea637b66c06ba0f67e9db20aa03e657efacd01c /menuconfig.py
parent37c698413ef6f433f03589a4f52076893030a9e5 (diff)
menuconfig: Add missing 'return' in _select_selected_choice_sym()
Won't affect behavior, but it was intended.
Diffstat (limited to 'menuconfig.py')
-rwxr-xr-xmenuconfig.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/menuconfig.py b/menuconfig.py
index 1a1e052..dc8372e 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -1096,6 +1096,7 @@ def _select_selected_choice_sym():
if node in _shown:
_sel_node_i = _shown.index(node)
_center_vertically()
+ return
def _jump_to(node):