From 5f394141f9c333afad5ac63414edc2df65fe99e3 Mon Sep 17 00:00:00 2001 From: David Saltares Date: Sat, 13 Aug 2016 10:23:21 +0100 Subject: [PATCH] Fixes typos in GUI tutorial --- tutorials/step_by_step/gui_tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/step_by_step/gui_tutorial.rst b/tutorials/step_by_step/gui_tutorial.rst index 31be18075..c3ee349fd 100644 --- a/tutorials/step_by_step/gui_tutorial.rst +++ b/tutorials/step_by_step/gui_tutorial.rst @@ -65,13 +65,13 @@ callback will be received at the beginning and every time the control needs to be redrawn (programmer needs to call :ref:`CanvasItem.update() ` to enqueue the CanvasItem for redraw). If the control is not visible -(yet aother CanvasItem property), the control does not receive any +(yet another CanvasItem property), the control does not receive any input. In general though, the programmer does not need to deal with drawing and input events directly when building UIs, (that is more useful when creating custom controls). Instead, controls emit different kinds of -signals with contextural information for when action occurs. For +signals with contextual information for when action occurs. For example, a :ref:`Button ` emits a "pressed" signal when pressed, a :ref:`Slider ` will emit a "value_changed" when dragged, etc.