Skip to content

Commit

Permalink
Fix xmldoc refs to OsuTKWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
Susko3 committed Apr 29, 2024
1 parent a5f9094 commit 02d0237
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public partial class SafeAreaDefiningContainer : Container<Drawable>, ISafeArea

/// <summary>
/// Initialises a <see cref="SafeAreaDefiningContainer"/> by optionally providing a custom <see cref="BindableSafeArea"/>.
/// If no such binding is provided, the container will default to <see cref="OsuTKWindow.SafeAreaPadding"/>.
/// If no such binding is provided, the container will default to <see cref="IWindow.SafeAreaPadding"/>.
/// </summary>
/// <param name="safeArea">The custom <see cref="BindableSafeArea"/> to bind to, if required.</param>
public SafeAreaDefiningContainer(BindableSafeArea safeArea = null)
Expand Down
8 changes: 4 additions & 4 deletions osu.Framework/Platform/CursorState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ public enum CursorState
Default = 0,

/// <summary>
/// The OS cursor is hidden while hovering the <see cref="OsuTKWindow"/>, but can still move anywhere.
/// The OS cursor is hidden while hovering the <see cref="IWindow"/>, but can still move anywhere.
/// </summary>
Hidden = 1,

/// <summary>
/// The OS cursor is confined to the <see cref="OsuTKWindow"/> while the window is in focus.
/// The OS cursor is confined to the <see cref="IWindow"/> while the window is in focus.
/// </summary>
Confined = 2,

/// <summary>
/// The OS cursor is hidden while hovering the <see cref="OsuTKWindow"/>.
/// It is confined to the <see cref="OsuTKWindow"/> while the window is in focus and can move freely otherwise.
/// The OS cursor is hidden while hovering the <see cref="IWindow"/>.
/// It is confined to the <see cref="IWindow"/> while the window is in focus and can move freely otherwise.
/// </summary>
HiddenAndConfined = Hidden | Confined,
}
Expand Down

0 comments on commit 02d0237

Please sign in to comment.