mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-08 21:40:51 +00:00
Made NativeWindow set WindowBorder to Fixed when created with FixedWindow flag like SDL windows
This commit is contained in:
parent
399e08ee33
commit
0c348d2429
|
@ -112,6 +112,11 @@ namespace OpenTK
|
||||||
}
|
}
|
||||||
WindowState = WindowState.Fullscreen;
|
WindowState = WindowState.Fullscreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((options & GameWindowFlags.FixedWindow) != 0)
|
||||||
|
{
|
||||||
|
WindowBorder = WindowBorder.Fixed;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Reference in a new issue