fixed bug where Focus would be ignored for the M hotkey

This commit is contained in:
Mark 2023-08-28 01:10:53 +02:00
parent 0991c84de5
commit 9d839c8f42

View File

@ -697,7 +697,7 @@ impl TuiFile {
self.updates.request_move_cursor(); self.updates.request_move_cursor();
} }
// M -> toggle threaded mode based on searchbar // M -> toggle threaded mode based on searchbar
(_, KeyCode::Char('m')) => { (Focus::Files, KeyCode::Char('m')) => {
self.updates.request_reset_search(); self.updates.request_reset_search();
self.updates.request_redraw_filebar(); self.updates.request_redraw_filebar();
if self.search_text == "b" { if self.search_text == "b" {
@ -742,6 +742,7 @@ impl TuiFile {
.filter(|e| e.selected) .filter(|e| e.selected)
.map(|e| e.path.clone()) .map(|e| e.path.clone())
.collect(); .collect();
self.updates.request_redraw_infobar();
tasks::task_del(paths, share); tasks::task_del(paths, share);
} }
// P -> Permissions // P -> Permissions