1
0
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:
tw93
2026-02-03 17:36:15 +08:00
parent bad1c71231
commit 579c963940
3 changed files with 34 additions and 42 deletions

View File

@@ -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]}"