Correct the names for the mouse scroll events

The links were correct, but the text for the link was wrong.
This commit is contained in:
Dave Pearson
2022-10-15 08:39:36 +01:00
parent 32f4f62587
commit 079e2a304a

View File

@@ -200,7 +200,7 @@ If you want your app to respond to a mouse click you should prefer the Click eve
### Scroll events ### Scroll events
Most mice have a scroll wheel which you can use to scroll the window underneath the cursor. Scrollable containers in Textual will handle these automatically, but you can handle [MouseDown](../events/mouse_scroll_down.md) and [MouseUp](../events/mouse_scroll_up) if you want build your own scrolling functionality. Most mice have a scroll wheel which you can use to scroll the window underneath the cursor. Scrollable containers in Textual will handle these automatically, but you can handle [MouseScrollDown](../events/mouse_scroll_down.md) and [MouseScrollUp](../events/mouse_scroll_up) if you want build your own scrolling functionality.
!!! information !!! information