From 123e475fed93c4f7ffff990b0f39d731bbe2157c Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Fri, 5 Jun 2020 15:16:30 -0500 Subject: [PATCH] Update section in README about focus loss. --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 842eef9..04fa105 100644 --- a/README.md +++ b/README.md @@ -66,9 +66,7 @@ Here are some issues that I know about now, along with recommended workarounds w ### Tab and Shift-tab stop working. -If focus ever lands outside of a UI widget, Tab and Shift-tab will stop working because there is no focused control from which to find a new focus candidate. I have some defensive code in place to recover from this sometimes, but it still happens on occasion. Save often. - -This often happens if I run a game from within the editor, then exit the game. Focus seems to land somewhere outside of a control and can't be restored, and my defensive code doesn't kick in. +If focus ever lands outside of a UI widget, Tab and Shift-tab will stop working because there is no focused control from which to find a new focus candidate. This used to happen lots in the editor, but seems to have gone away. Game UIs should be explicit about setting an initial focus when transitioning between screens. ### File navigation is confusing.