From d738685a51b2fab70540892ec2e7a4e7f1d5821a Mon Sep 17 00:00:00 2001 From: the_fiddler <the_fiddler@ebc5dd9b-fb1d-0410-b6f8-d24c324e9604> Date: Sun, 18 Oct 2009 15:23:22 +0000 Subject: [PATCH] Treat 0 as a special value (necessary for internal purposes). --- Source/OpenTK/WindowBorder.cs | 2 +- Source/OpenTK/WindowState.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/WindowBorder.cs b/Source/OpenTK/WindowBorder.cs index 2d94de03..3fbd2367 100644 --- a/Source/OpenTK/WindowBorder.cs +++ b/Source/OpenTK/WindowBorder.cs @@ -12,7 +12,7 @@ namespace OpenTK /// <summary> /// The window has a resizable border. A window with a resizable border can be resized by the user or programmatically. /// </summary> - Resizable = 0, + Resizable = 1, /// <summary> /// The window has a fixed border. A window with a fixed border can only be resized programmatically. /// </summary> diff --git a/Source/OpenTK/WindowState.cs b/Source/OpenTK/WindowState.cs index 64a72612..7afcadae 100644 --- a/Source/OpenTK/WindowState.cs +++ b/Source/OpenTK/WindowState.cs @@ -20,7 +20,7 @@ namespace OpenTK /// <summary> /// The window is in its normal state. /// </summary> - Normal = 0, + Normal = 1, /// <summary> /// The window is minimized to the taskbar (also known as 'iconified'). /// </summary>