summaryrefslogtreecommitdiffstats
path: root/src/app/app.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-09-07 18:55:41 +0200
committerCanop <cano.petrole@gmail.com>2020-09-07 18:55:41 +0200
commit313234bcfd24181c9558f2c5f6f735510c1dfda7 (patch)
treee2079a5c8aaac3c8d7ab6d5d9250fc6d49453add /src/app/app.rs
parent0335393a817285fe9ac42f18fe9a6f539c8a8d9e (diff)
a few fixes to the :copy_path implementation
It still doesn't cross compile to windows, though
Diffstat (limited to 'src/app/app.rs')
-rw-r--r--src/app/app.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/app/app.rs b/src/app/app.rs
index 14dcb39..11f2e17 100644
--- a/src/app/app.rs
+++ b/src/app/app.rs
@@ -266,7 +266,11 @@ impl App {
self.mut_panel().refresh_input_status(&other_path, con);
}
}
- Keep => {}
+ Keep => {
+ if is_input_invocation {
+ self.mut_panel().clear_input_invocation();
+ }
+ }
Launch(launchable) => {
self.launch_at_end = Some(*launchable);
self.quitting = true;