Browse Source

Revert "Use client size for top-level arrange."

This reverts commit 8dcc94550c.
pull/72/merge
Steven Kirk 11 years ago
parent
commit
c90ffca003
  1. 2
      Gtk/Perspex.Gtk/WindowImpl.cs

2
Gtk/Perspex.Gtk/WindowImpl.cs

@ -79,7 +79,7 @@ namespace Perspex.Gtk
public Point PointToScreen(Point point)
{
int x, y;
this.Window.GetRootOrigin(out x, out y);
this.GdkWindow.GetDeskrelativeOrigin(out x, out y);
return new Point(point.X + x, point.Y + y);
}

Loading…
Cancel
Save