Merge pull request #7644 from pythonic64/update-doc_of_disable_hover_property

MouseMotionEventProvider: Update doc of disable_hover property
This commit is contained in:
Richard Larkin 2021-10-05 00:43:59 +02:00 committed by GitHub
commit 3223583651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -194,7 +194,11 @@ class MouseMotionEventProvider(MotionEventProvider):
self._disable_hover = value
disable_hover = property(_get_disable_hover, _set_disable_hover)
'''Disables dispatching of hover events if set to ``True`` (default).
'''Disables dispatching of hover events if set to ``True``.
Hover events are enabled by default (`disable_hover` is ``False``). See
module documentation if you want to enable/disable hover events through
config file.
.. versionadded:: 2.1.0
'''