Made NativeWindow set WindowBorder to Fixed when created with FixedWindow flag like SDL windows
This commit is contained in:
parent
399e08ee33
commit
0c348d2429
1 changed files with 5 additions and 0 deletions
|
@ -112,6 +112,11 @@ namespace OpenTK
|
|||
}
|
||||
WindowState = WindowState.Fullscreen;
|
||||
}
|
||||
|
||||
if ((options & GameWindowFlags.FixedWindow) != 0)
|
||||
{
|
||||
WindowBorder = WindowBorder.Fixed;
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
Loading…
Reference in a new issue