Prevent automatic focus of input field on Android Console view
- Streamlines the user experience and only adds the keyboard overhead to users who need it
This commit is contained in:
parent
94a3cc5fc3
commit
b8373898d1
1 changed files with 2 additions and 0 deletions
|
|
@ -208,12 +208,14 @@ namespace MatterHackers.MatterControl
|
|||
|
||||
public override void OnDraw(Graphics2D graphics2D)
|
||||
{
|
||||
#if !__ANDROID__
|
||||
if (firstDraw)
|
||||
{
|
||||
filterOutput.Checked = UserSettings.Instance.Fields.GetBool(TerminalFilterOutputKey, false);
|
||||
firstDraw = false;
|
||||
UiThread.RunOnIdle(manualCommandTextEdit.Focus);
|
||||
}
|
||||
#endif
|
||||
base.OnDraw(graphics2D);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue