You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since #3272 was merged in, the left/right arrow keys switch focus even while a single line text editing box is focused and text is being edited. This makes it impossible to move within the text being edited without using the mouse, which is of course not expected behavior.
To verify: run egui_demo_app, click to edit a single line text field, hit the left or right arrow keys and the text edit loses focus.
I only took a quick look at the code, but it seems that single line text fields don't "focus lock" because the tab key has always been used to end their editing, but now the arrow keys follow through and also cause the focus to move away.
The text was updated successfully, but these errors were encountered:
Since #3272 was merged in, the left/right arrow keys switch focus even while a single line text editing box is focused and text is being edited. This makes it impossible to move within the text being edited without using the mouse, which is of course not expected behavior.
To verify: run
egui_demo_app
, click to edit a single line text field, hit the left or right arrow keys and the text edit loses focus.I only took a quick look at the code, but it seems that single line text fields don't "focus lock" because the tab key has always been used to end their editing, but now the arrow keys follow through and also cause the focus to move away.
The text was updated successfully, but these errors were encountered: