diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | alacritty/src/event.rs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d19290e..3dc4c297 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Window clipping when maximizing a window without decorations on Windows - Quadrants not aligned with half blocks with built-in font - EOT (`\x03`) escaping bracketed paste mode +- Drag & Drop not working for the search bar ### Removed diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index 3ecca5e8..02309188 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -1320,7 +1320,7 @@ impl input::Processor<EventProxy, ActionContext<'_, Notifier, EventProxy>> { }, WindowEvent::DroppedFile(path) => { let path: String = path.to_string_lossy().into(); - self.ctx.write_to_pty((path + " ").into_bytes()); + self.ctx.paste(&(path + " ")); }, WindowEvent::CursorLeft { .. } => { self.ctx.mouse.inside_text_area = false; |