Fix #6994
This commit is contained in:
parent
cad7047a7a
commit
37f0c8c0a8
1 changed files with 2 additions and 1 deletions
|
|
@ -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 a new issue