mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00
Fix alignment issue
This commit is contained in:
@@ -331,8 +331,8 @@ retnomove:
|
|||||||
}
|
}
|
||||||
if (row >= 0 && row < Rows && col >= 0 && col <= Columns
|
if (row >= 0 && row < Rows && col >= 0 && col <= Columns
|
||||||
&& gp->chars != NULL) {
|
&& gp->chars != NULL) {
|
||||||
mouse_char = utf_ptr2char(gp->chars[gp->line_offset[row]
|
mouse_char = utf_ptr2char(gp->chars[gp->line_offset[row]
|
||||||
+ (unsigned)col]);
|
+ (unsigned)col]);
|
||||||
} else {
|
} else {
|
||||||
mouse_char = ' ';
|
mouse_char = ' ';
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user