mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
Fix wrong reorder argument in open command
This commit is contained in:
parent
3beeefea98
commit
b68d979475
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ impl Manager {
|
||||||
|
|
||||||
let opt = opt.into() as Opt;
|
let opt = opt.into() as Opt;
|
||||||
let selected =
|
let selected =
|
||||||
if opt.hovered { vec![&hovered] } else { self.selected_or_hovered(false).collect() };
|
if opt.hovered { vec![&hovered] } else { self.selected_or_hovered(true).collect() };
|
||||||
|
|
||||||
if Self::quit_with_selected(&selected) {
|
if Self::quit_with_selected(&selected) {
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue