From cf5cc9832f9f236d1a1a8755b7ff92f7a7b3e850 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Sat, 15 Oct 2022 08:34:30 +0100 Subject: [PATCH] Try and finish what looked like an unfinished line I'm not 100% sure if it makes sense to say "pressed" or "held down" here; I'm going with "held down" as pressed sort of suggests something a bit different. Mostly this change here is to highlight that this thought seems unfinished. --- docs/guide/input.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/input.md b/docs/guide/input.md index 70f5059fa..5d24d7445 100644 --- a/docs/guide/input.md +++ b/docs/guide/input.md @@ -156,7 +156,7 @@ Coordinates may be relative to the screen, so `(0, 0)` would be the top left of ### Mouse movements -When you move the mouse cursor over a widget it will receive [MouseMove](../events/mouse_move.md) events which contain the coordinate of the mouse and information about what modified keys (++ctrl++, ++shift++ etc). +When you move the mouse cursor over a widget it will receive [MouseMove](../events/mouse_move.md) events which contain the coordinate of the mouse and information about what modified keys (++ctrl++, ++shift++ etc) are held down. The following example shows mouse movements being used to _attach_ a widget to the mouse cursor.