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:
John Lewin 2015-09-29 15:54:01 -07:00
parent 94a3cc5fc3
commit b8373898d1

View file

@ -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);
}