mirror of
https://github.com/tw93/Mole.git
synced 2026-02-09 12:34:17 +00:00
uninstall: refine protection flow and menu filtering
This commit is contained in:
@@ -657,6 +657,14 @@ paginated_multi_select() {
|
||||
fi
|
||||
;;
|
||||
"SPACE")
|
||||
# In filter mode with active text, treat space as search character
|
||||
if [[ -n "$filter_text" ]]; then
|
||||
filter_text+=" "
|
||||
rebuild_view
|
||||
cursor_pos=0
|
||||
need_full_redraw=true
|
||||
continue
|
||||
fi
|
||||
local idx=$((top_index + cursor_pos))
|
||||
if [[ $idx -lt ${#view_indices[@]} ]]; then
|
||||
local real="${view_indices[idx]}"
|
||||
|
||||
Reference in New Issue
Block a user