From 5b081252e0b1c8b0b33801ca67aaed3856bbc9a4 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 20 Apr 2008 17:49:07 +0000 Subject: [PATCH] Fixed documentation and made WindowState.Normal the default. --- Source/OpenTK/WindowState.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/OpenTK/WindowState.cs b/Source/OpenTK/WindowState.cs index 9d2604f6..5fe91b30 100644 --- a/Source/OpenTK/WindowState.cs +++ b/Source/OpenTK/WindowState.cs @@ -13,24 +13,24 @@ using System.Text; namespace OpenTK { /// - /// Defines the available states for the GameWindow. + /// Enumerates available window states. /// public enum WindowState { /// - /// The GameWindow is minimized to the taskbar (also known as 'iconified'). + /// The window is in its normal state. + /// + Normal = 0, + /// + /// The window is minimized to the taskbar (also known as 'iconified'). /// Minimized, /// - /// The GameWindow is in its normal state. - /// - Normal, - /// - /// The GameWindow covers the whole working area, which includes the desktop but not the taskbar and/or panels. + /// The window covers the whole working area, which includes the desktop but not the taskbar and/or panels. /// Maximized, /// - /// The GameWindow covers the whole screen, including all taskbars and/or panels. + /// The window covers the whole screen, including all taskbars and/or panels. /// Fullscreen }