Fix brace formatting in NativeWindow.CursorVisible
This commit is contained in:
parent
3d9d6d7ee3
commit
aee67bf80a
1 changed files with 8 additions and 2 deletions
|
@ -475,8 +475,14 @@ namespace OpenTK
|
|||
/// </summary>
|
||||
public bool CursorVisible
|
||||
{
|
||||
get { return implementation.CursorVisible; }
|
||||
set { implementation.CursorVisible = value; }
|
||||
get
|
||||
{
|
||||
return implementation.CursorVisible;
|
||||
}
|
||||
set
|
||||
{
|
||||
implementation.CursorVisible = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue