From 02d0237331f55d8811c6fe6934e98834d354b3b6 Mon Sep 17 00:00:00 2001 From: Susko3 Date: Mon, 29 Apr 2024 23:10:52 +0200 Subject: [PATCH] Fix xmldoc refs to `OsuTKWindow` --- .../Graphics/Containers/SafeAreaDefiningContainer.cs | 2 +- osu.Framework/Platform/CursorState.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/osu.Framework/Graphics/Containers/SafeAreaDefiningContainer.cs b/osu.Framework/Graphics/Containers/SafeAreaDefiningContainer.cs index 9e06fa1ea1..22e751120c 100644 --- a/osu.Framework/Graphics/Containers/SafeAreaDefiningContainer.cs +++ b/osu.Framework/Graphics/Containers/SafeAreaDefiningContainer.cs @@ -25,7 +25,7 @@ public partial class SafeAreaDefiningContainer : Container, ISafeArea /// /// Initialises a by optionally providing a custom . - /// If no such binding is provided, the container will default to . + /// If no such binding is provided, the container will default to . /// /// The custom to bind to, if required. public SafeAreaDefiningContainer(BindableSafeArea safeArea = null) diff --git a/osu.Framework/Platform/CursorState.cs b/osu.Framework/Platform/CursorState.cs index d6a6d20c0e..dab509523f 100644 --- a/osu.Framework/Platform/CursorState.cs +++ b/osu.Framework/Platform/CursorState.cs @@ -19,18 +19,18 @@ public enum CursorState Default = 0, /// - /// The OS cursor is hidden while hovering the , but can still move anywhere. + /// The OS cursor is hidden while hovering the , but can still move anywhere. /// Hidden = 1, /// - /// The OS cursor is confined to the while the window is in focus. + /// The OS cursor is confined to the while the window is in focus. /// Confined = 2, /// - /// The OS cursor is hidden while hovering the . - /// It is confined to the while the window is in focus and can move freely otherwise. + /// The OS cursor is hidden while hovering the . + /// It is confined to the while the window is in focus and can move freely otherwise. /// HiddenAndConfined = Hidden | Confined, }