From 7f77e9a0a15cca37e0c55a9c44e407608dc09327 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sat, 15 Oct 2022 13:10:13 +0100 Subject: [PATCH] Update docs/guide/input.md --- 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 28c134967..f03f4e756 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) are held down. +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 modifier keys (++ctrl++, ++shift++ etc) are held down. The following example shows mouse movements being used to _attach_ a widget to the mouse cursor.