WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=0fb294528763a4fed37c0df0e899be48f267c992
commit 0fb294528763a4fed37c0df0e899be48f267c992 Author: Xavi Artigas <xavierarti...@yahoo.es> Date: Wed Sep 19 02:50:42 2018 -0700 Wiki page focus.md changed with summary [typo] by Xavi Artigas --- pages/develop/guides/c/ui/focus.md.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/develop/guides/c/ui/focus.md.txt b/pages/develop/guides/c/ui/focus.md.txt index 530622e7d..95d4fffc9 100644 --- a/pages/develop/guides/c/ui/focus.md.txt +++ b/pages/develop/guides/c/ui/focus.md.txt @@ -38,7 +38,7 @@ When EFL receives an ordinal focus navigation command (typically though the <kbd As you add widgets to your GUI, the *focusable* ones are added to a list (not all widgets can be selected, like text labels, for example). Ordinal commands then move the focus through this list. If a widget is a container for other widgets (like Box), focus will move through its children *before* moving out of the container and onto its siblings. -The bottom line is that you mus **add widgets to your GUI in the same order in which you want the user to navigate them**. The order in which the widgets are added has no other impact, so it is worth doing to make your GUI more keyboard-friendly. +The bottom line is that you must **add widgets to your GUI in the same order in which you want the user to navigate them**. The order in which the widgets are added has no other impact, so it is worth doing to make your GUI more keyboard-friendly. ## Setting the Focus on a Widget ## --