diff options
Diffstat (limited to 'alacritty/src')
-rw-r--r-- | alacritty/src/event.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index 0de130b9..c8c7e02e 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -630,7 +630,7 @@ impl<N: Notify + OnResize> Processor<N> { }, WindowEvent::DroppedFile(path) => { let path: String = path.to_string_lossy().into(); - processor.ctx.write_to_pty(path.into_bytes()); + processor.ctx.write_to_pty((path + " ").into_bytes()); }, WindowEvent::CursorLeft { .. } => { processor.ctx.mouse.inside_grid = false; |