diff options
Diffstat (limited to 'alacritty/src/input.rs')
-rw-r--r-- | alacritty/src/input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/input.rs b/alacritty/src/input.rs index 0fd2b224..977a6e5d 100644 --- a/alacritty/src/input.rs +++ b/alacritty/src/input.rs @@ -421,7 +421,7 @@ impl<T: EventListener, A: ActionContext<T>> Processor<T, A> { let point = self.ctx.mouse().point(&self.ctx.size_info(), display_offset); // Assure the mouse point is not in the scrollback. - if point.line >= 0 { + if point.line < 0 { return; } |