mirror of https://github.com/kivy/kivy.git
typo, linked to wikipedia for event programming
This commit is contained in:
parent
ec2cf1cb98
commit
e1ae35445b
|
@ -1,7 +1,7 @@
|
||||||
Events
|
Events
|
||||||
------
|
------
|
||||||
|
|
||||||
Kivy is mostly event-based, meaning the flow of the program is determined
|
Kivy is mostly `event-based <http://en.wikipedia.org/wiki/Event-driven_programming>`_, meaning the flow of the program is determined
|
||||||
by events.
|
by events.
|
||||||
|
|
||||||
**Clock events**
|
**Clock events**
|
||||||
|
@ -47,7 +47,7 @@ changes its position or size, the corresponding event is automatically fired.
|
||||||
In addition, you have the ability to create your own events using
|
In addition, you have the ability to create your own events using
|
||||||
:meth:`~kivy.event.EventDispatcher.register_event_type`, as the
|
:meth:`~kivy.event.EventDispatcher.register_event_type`, as the
|
||||||
`on_press` and `on_release` events in the :class:`~kivy.uix.button.Button`
|
`on_press` and `on_release` events in the :class:`~kivy.uix.button.Button`
|
||||||
widgit demonstrate.
|
widget demonstrate.
|
||||||
|
|
||||||
Another thing to note is that if you override an event, you become responsible
|
Another thing to note is that if you override an event, you become responsible
|
||||||
for implementing all its behaviour previously handled by the base class. The
|
for implementing all its behaviour previously handled by the base class. The
|
||||||
|
|
Loading…
Reference in New Issue