Browse Source

Issue #158: Text input is broken on MacOS X

pull/191/head
David Karlaš 11 years ago
parent
commit
1d44aa0b8c
  1. 6
      src/Gtk/Perspex.Gtk/WindowImpl.cs

6
src/Gtk/Perspex.Gtk/WindowImpl.cs

@ -51,6 +51,12 @@ namespace Perspex.Gtk
_imContext.Commit += ImContext_Commit;
}
protected override void OnRealized ()
{
base.OnRealized ();
_imContext.ClientWindow = this.GdkWindow;
}
public Size ClientSize
{
get;

Loading…
Cancel
Save