From 09e75ea32959e58afa3c8a68d0bd22bad6fc598c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 15 Dec 2020 07:37:14 +0530 Subject: [PATCH] Add a note about cursor movement after placing an image. --- docs/graphics-protocol.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/graphics-protocol.rst b/docs/graphics-protocol.rst index 4ef60525d..767772be5 100644 --- a/docs/graphics-protocol.rst +++ b/docs/graphics-protocol.rst @@ -390,6 +390,13 @@ allows rendering of text on top of images. Negative z-index values below INT32_MIN/2 (-1,073,741,824) will be drawn under cells with non-default background colors. +.. note:: After placing an image on the screen the cursor must be moved to the + right by the number of cols in the image placement rectangle and down by the + number of rows in the image placement rectangle. If either of these cause + the cursor to leave either the screen or the scroll area, the exact + positioning of the cursor is undefined, and up to implementations. + + Deleting images ---------------------