diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-14 22:27:24 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-14 22:29:52 +0200 |
| commit | 3d0dc9ffc1023210bb54650065807085b53a6926 (patch) | |
| tree | 40ef188acf0862ba121eae340923819b4ad8ccf2 /menuconfig.py | |
| parent | fdf1f3eb574eba71adb2dbdc8fb7df3f61a8c4ba (diff) | |
menuconfig: Switch back to "very visible" cursor after Ctrl-F
Was set back to "normal" instead due to a typo, which is inconsistent
with the rest of the code.
Diffstat (limited to 'menuconfig.py')
| -rwxr-xr-x | menuconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menuconfig.py b/menuconfig.py index 7815bfe..25586fa 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -1958,7 +1958,7 @@ def _jump_to_dialog(): if matches: _safe_curs_set(0) _info_dialog(matches[sel_node_i], True) - _safe_curs_set(1) + _safe_curs_set(2) scroll = _resize_jump_to_dialog( edit_box, matches_win, bot_sep_win, help_win, |
