From 2d22f65f2829f2f092c9e42a930a17243fae50ed Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Thu, 25 Aug 2022 10:22:07 +0100 Subject: [PATCH] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> --- docs/events/load.md | 2 +- docs/events/mouse_click.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/events/load.md b/docs/events/load.md index 661ec9899..0d01fba79 100644 --- a/docs/events/load.md +++ b/docs/events/load.md @@ -1,4 +1,4 @@ -# Mount +# Load The `Load` event is sent to the app prior to switching the terminal in to application mode. diff --git a/docs/events/mouse_click.md b/docs/events/mouse_click.md index 0b175a4a3..00f6d3b47 100644 --- a/docs/events/mouse_click.md +++ b/docs/events/mouse_click.md @@ -11,10 +11,10 @@ The `Click` event is sent to a widget when the user clicks a mouse button. | `x` | int | Mouse x coordinate, relative to Widget | | `y` | int | Mouse y coordinate, relative to Widget | | `delta_x` | int | Change in x since last mouse event | -| `delta_y` | int | Change in x since last mouse event | +| `delta_y` | int | Change in y since last mouse event | | `button` | int | Index of mouse button | | `shift` | bool | Shift key pressed if True | | `meta` | bool | Meta key pressed if True | -| `ctrl` | bool | Shift key pressed if True | +| `ctrl` | bool | Ctrl key pressed if True | | `screen_x` | int | Mouse x coordinate relative to the screen | | `screen_y` | int | Mouse y coordinate relative to the screen |