From aee67bf80a924e5f41bf262598deb5060a51a70c Mon Sep 17 00:00:00 2001 From: copygirl Date: Sat, 6 Jan 2018 21:18:48 +0100 Subject: [PATCH] Fix brace formatting in NativeWindow.CursorVisible --- src/OpenTK/NativeWindow.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/OpenTK/NativeWindow.cs b/src/OpenTK/NativeWindow.cs index 249db50f..b355ec75 100644 --- a/src/OpenTK/NativeWindow.cs +++ b/src/OpenTK/NativeWindow.cs @@ -475,8 +475,14 @@ namespace OpenTK /// public bool CursorVisible { - get { return implementation.CursorVisible; } - set { implementation.CursorVisible = value; } + get + { + return implementation.CursorVisible; + } + set + { + implementation.CursorVisible = value; + } } ///