Fix mouse move handling

This commit fixes the regression introduced in
84aca67296.

Fixes #2635.
This commit is contained in:
Kirill Chibisov 2019-07-10 21:27:43 +03:00 committed by Christian Duerr
parent 84aca67296
commit a99547cc6d
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ impl<'a, A: ActionContext + 'a> Processor<'a, A> {
prev_line != self.ctx.mouse().line || prev_col != self.ctx.mouse().column;
// If the mouse hasn't changed cells, do nothing
if cell_changed || prev_side != cell_side {
if !cell_changed && prev_side == cell_side {
return;
}