mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-14 12:11:12 +03:00
Fix #6994
This commit is contained in:
parent
cad7047a7a
commit
37f0c8c0a8
@ -1032,7 +1032,8 @@ handle_put_command(GraphicsManager *self, const GraphicsCommand *g, Cursor *c, b
|
||||
} else {
|
||||
// Move the cursor, the screen will take care of ensuring it is in bounds
|
||||
if (g->cursor_movement != 1 && !g->unicode_placement) {
|
||||
c->x += ref->effective_num_cols; c->y += ref->effective_num_rows - 1;
|
||||
c->x += ref->effective_num_cols;
|
||||
if (ref->effective_num_rows) c->y += ref->effective_num_rows - 1;
|
||||
}
|
||||
}
|
||||
return img->client_id;
|
||||
|
Loading…
Reference in New Issue
Block a user