From 951f1371e0974a0bf8f72db9dfb23f2874913ce0 Mon Sep 17 00:00:00 2001 From: Matthew Einhorn Date: Sat, 12 Jul 2014 21:18:06 -0400 Subject: [PATCH] Add note about mouse_pos to motion event. Fixes #2026. --- kivy/input/motionevent.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kivy/input/motionevent.py b/kivy/input/motionevent.py index bcd3a0cb8..7424064de 100644 --- a/kivy/input/motionevent.py +++ b/kivy/input/motionevent.py @@ -40,6 +40,8 @@ MotionEvent from the :class:`~kivy.core.window.Window` to your own callback:: Window.bind(on_motion=on_motion) +You can also listen to changes of the mouse position by watching +:attr:`~kivy.core.window.WindowBase.mouse_pos`. Profiles --------