Revise Android softkeyboard support

- Remove keyboardHeight from constructor
 - Latest agg
This commit is contained in:
John Lewin 2015-10-13 10:17:11 -07:00
parent d720abac42
commit 1380ea0c43
11 changed files with 11 additions and 11 deletions

View file

@ -98,7 +98,7 @@ namespace MatterHackers.MatterControl
AlwaysOnTopOfMain = true;
#if __ANDROID__
TerminalWidget terminalWidget = new TerminalWidget(true);
this.AddChild(new SoftKeyboardContentOffset(terminalWidget, SoftKeyboardContentOffset.AndroidKeyboardOffset));
this.AddChild(new SoftKeyboardContentOffset(terminalWidget));
terminalWidget.Closed += (sender, e) => { Close(); };
#else
this.AddChild(new TerminalWidget(true));