Skip to content

Commit

Permalink
Fix alignment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tk-shirasaka committed Nov 9, 2020
1 parent 19bb177 commit 5e7626a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nvim/mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ int jump_to_mouse(int flags,
}
if (row >= 0 && row < Rows && col >= 0 && col <= Columns
&& gp->chars != NULL) {
mouse_char = utf_ptr2char(gp->chars[gp->line_offset[row]
+ (unsigned)col]);
mouse_char = utf_ptr2char(gp->chars[gp->line_offset[row]
+ (unsigned)col]);
} else {
mouse_char = ' ';
}
Expand Down

0 comments on commit 5e7626a

Please sign in to comment.