From de5b50ddea035b468b1b3894f73d0824ac76c836 Mon Sep 17 00:00:00 2001 From: Tig Date: Thu, 1 Aug 2024 16:38:38 -0600 Subject: [PATCH] WIP: Focus re-design --- docfx/docs/navigation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docfx/docs/navigation.md b/docfx/docs/navigation.md index bfb0736d3..0b87ac0a7 100644 --- a/docfx/docs/navigation.md +++ b/docfx/docs/navigation.md @@ -133,8 +133,8 @@ Setting this property to `true` has the same effect as calling `View.SetFocus () If `v.HasFocus == true` then -- All views down `v`'s view-hierarchy must be focusable. -- All views down `v`'s view-hierarchy will also have `HasFocus == true`. +- All views up `v`'s superview-hierarchy must be focusable. +- All views up `v`'s superview-hierarchy will also have `HasFocus == true`. - The deepest-subview of `v` that is focusable will also have `HasFocus == true` In other words, `v.HasFocus == true` does not necessarily mean `v` is the most-focused view, receiving input. If it has focusable sub-views, one of those (or a further subview) will be the most-focused (`Application.Navigation.Focused`).