Made NativeWindow set WindowBorder to Fixed when created with FixedWindow flag like SDL windows

This commit is contained in:
Goz3rr 2014-05-17 00:27:38 +02:00
parent 399e08ee33
commit 0c348d2429

View file

@ -112,6 +112,11 @@ namespace OpenTK
}
WindowState = WindowState.Fullscreen;
}
if ((options & GameWindowFlags.FixedWindow) != 0)
{
WindowBorder = WindowBorder.Fixed;
}
}
#endregion