mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
parent
2538d94dae
commit
cd92dcb149
1 changed files with 1 additions and 1 deletions
|
@ -792,7 +792,7 @@ impl<T> Term<T> {
|
|||
// Remove wide char and spacer.
|
||||
let wide = cursor_cell.flags.contains(Flags::WIDE_CHAR);
|
||||
let point = self.grid.cursor.point;
|
||||
if wide && point.column <= self.last_column() {
|
||||
if wide && point.column < self.last_column() {
|
||||
self.grid[point.line][point.column + 1].flags.remove(Flags::WIDE_CHAR_SPACER);
|
||||
} else if point.column > 0 {
|
||||
self.grid[point.line][point.column - 1].clear_wide();
|
||||
|
|
Loading…
Reference in a new issue