From 9704def8e14581149a0875a07e9d25417d9716e1 Mon Sep 17 00:00:00 2001 From: anand vibhuti <82255991+Anand-Vibhuti@users.noreply.github.com> Date: Fri, 24 Mar 2023 01:44:14 +0530 Subject: [PATCH] Docs: Fixes a typo (issue #7838) (#8183) --- kivy/uix/widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/uix/widget.py b/kivy/uix/widget.py index e00b39e1b..9a085421e 100644 --- a/kivy/uix/widget.py +++ b/kivy/uix/widget.py @@ -123,7 +123,7 @@ events bubble up from the first child upwards through the other children. If a widget has children, the event is passed through its children before being passed on to the widget after it. -As the :meth:`~kivy.uix.widget.Widget.on_touch_up` method inserts widgets at +As the :meth:`~kivy.uix.widget.Widget.add_widget` method inserts widgets at index 0 by default, this means the event goes from the most recently added widget back to the first one added. Consider the following: