From 411f4bcc989ddefc36e9c8b47c5aec4af4aa07ef Mon Sep 17 00:00:00 2001 From: kanato Date: Mon, 11 Jan 2010 22:08:00 +0000 Subject: [PATCH] * Platform/MacOS/CarbonGLNative.cs: Fix width/height properties on Mac OS X. --- .../OpenTK/Platform/MacOS/CarbonGLNative.cs | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs b/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs index ee8a247a..fd11ab04 100644 --- a/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs +++ b/Source/OpenTK/Platform/MacOS/CarbonGLNative.cs @@ -647,6 +647,14 @@ namespace OpenTK.Platform.MacOS API.SizeWindow(window.WindowRef, width, height, true); } + void SetClientSize(short width, short height) + { + if (WindowState == WindowState.Fullscreen) + return; + + API.SizeWindow(window.WindowRef, width, height, true); + } + protected void OnResize() { LoadSize(); @@ -877,21 +885,21 @@ namespace OpenTK.Platform.MacOS public int Width { - get { return Bounds.Width; } - set { Size = new Size(value, Height); } + get { return ClientRectangle.Width; } + set { SetClientSize((short)value, (short)Height); } } public int Height { - get { return Bounds.Height; } - set { Size = new Size(Width, value); } + get { return ClientRectangle.Height; } + set { SetClientSize((short)Width, (short)value); } } public int X { get { - return bounds.X; + return ClientRectangle.X; } set { @@ -903,7 +911,7 @@ namespace OpenTK.Platform.MacOS { get { - return bounds.Y; + return ClientRectangle.Y; } set {