Skip to content

Commit a24a21c

Browse files
committed
Fixed AutoIconify documentation. Removed unused usings.
1 parent 7e723a5 commit a24a21c

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/OpenTK.Windowing.Desktop/NativeWindow.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ public VSyncMode VSync
142142
private bool _autoIconify;
143143

144144
/// <summary>
145-
/// <inheritdoc cref="NativeWindowSettings.AutoIconify"/>
145+
/// Gets or sets a value indicating whether the application window will be minimized if the
146+
/// focus changes while the window is in fullscreen mode. The default value is <c>true</c>.
146147
/// </summary>
147148
public unsafe bool AutoIconify
148149
{

src/OpenTK.Windowing.Desktop/NativeWindowSettings.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
//
99

1010
using System;
11-
using System.Data.SqlTypes;
12-
using System.Diagnostics;
1311
using OpenTK.Mathematics;
1412
using OpenTK.Windowing.Common;
1513
using OpenTK.Windowing.Common.Input;
@@ -272,10 +270,7 @@ public NativeWindowSettings()
272270

273271
/// <summary>
274272
/// Gets or sets a value indicating whether the application window will be minimized if the
275-
/// focus changes while the window is in fullscreen mode. The default value is <c>true</c>. Note that
276-
/// <see cref="WindowState.Fullscreen"/> implies exclusive fullscreen mode, which means other normal windows on
277-
/// the same monitor will not overdraw the application window. If overdraw is required, the library consumer must
278-
/// define and manage a non-exclusive "borderless" window, sized and positioned to cover the entire display area.
273+
/// focus changes while the window is in fullscreen mode. The default value is <c>true</c>.
279274
/// </summary>
280275
public bool AutoIconify { get; set; } = true;
281276
}

0 commit comments

Comments
 (0)