mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-08-04 10:11:07 +00:00
Renamed IsWindowVisisble to the correct IsWindowVisible.
This commit is contained in:
parent
0798c8d45c
commit
045453fbf2
|
@ -809,7 +809,7 @@ namespace OpenTK.Platform.Windows
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
[DllImport("user32.dll")]
|
[DllImport("user32.dll")]
|
||||||
public static extern bool IsWindowVisisble(IntPtr intPtr);
|
public static extern bool IsWindowVisible(IntPtr intPtr);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
|
@ -718,7 +718,7 @@ namespace OpenTK.Platform.Windows
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return Functions.IsWindowVisisble(window.WindowHandle);
|
return Functions.IsWindowVisible(window.WindowHandle);
|
||||||
}
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue