aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@digia.com>2014-10-01 12:40:47 +0200
committerMitch Curtis <mitch.curtis@digia.com>2014-10-10 15:43:50 +0200
commit7f5a59c2025022f99dff9fa030c892adb4473d6a (patch)
treebd4e43275096a498e61aabce413ef257dffaf861
parent624844f3db601b48205d7f545732870d45d78300 (diff)
Fix issues with Keyboard Focus documentation.
Change-Id: I0dcc364456404a761a555da065452a59d1249a2f Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
-rw-r--r--src/quick/doc/src/concepts/input/focus.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/quick/doc/src/concepts/input/focus.qdoc b/src/quick/doc/src/concepts/input/focus.qdoc
index 748c8eb53c..f75f3d2bad 100644
--- a/src/quick/doc/src/concepts/input/focus.qdoc
+++ b/src/quick/doc/src/concepts/input/focus.qdoc
@@ -47,12 +47,12 @@ is delivered to it.
\li The key event is delivered by the scene to the \l Item with
\e {active focus}. If no item has active focus, the key event is ignored.
\li If the \l QQuickItem with active focus accepts the key event, propagation
-stops. Otherwise the event is send to the Item's parent until
+stops. Otherwise the event is sent to the Item's parent until
the event is accepted, or the root item is reached.
If the \c {Rectangle} type in the following example has active focus and the \c A key is pressed,
-the event will not be propagated further. Pressing the \c B key the event will propagate to the root
-item and thus subsequently be ignored.
+the event will not be propagated further. Upon pressing the \c B key, the event will propagate to the root
+item and thus be ignored.
\snippet qml/focus/rectangle.qml simple key event
\snippet qml/focus/rectangle.qml simple key event end