Renamed IsWindowVisisble to the correct IsWindowVisible.
This commit is contained in:
parent
0798c8d45c
commit
045453fbf2
2 changed files with 2 additions and 2 deletions
|
@ -809,7 +809,7 @@ namespace OpenTK.Platform.Windows
|
|||
#endregion
|
||||
|
||||
[DllImport("user32.dll")]
|
||||
public static extern bool IsWindowVisisble(IntPtr intPtr);
|
||||
public static extern bool IsWindowVisible(IntPtr intPtr);
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
|
@ -718,7 +718,7 @@ namespace OpenTK.Platform.Windows
|
|||
{
|
||||
get
|
||||
{
|
||||
return Functions.IsWindowVisisble(window.WindowHandle);
|
||||
return Functions.IsWindowVisible(window.WindowHandle);
|
||||
}
|
||||
set
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue