Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion osu.Game/OsuGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ public override void SetHost(GameHost host)

if (host.Window != null)
{
host.Window.CursorState |= CursorState.Hidden;
host.Window.DragDrop += path =>
{
// on macOS/iOS, URL associations are handled via SDL_DROPFILE events.
Expand Down Expand Up @@ -967,6 +966,11 @@ protected override void LoadComplete()
{
base.LoadComplete();

GlobalCursorDisplay.MenuCursor.AlwaysPresent = true; // required for tooltip display

// we don't want to show the menu cursor as it would appear on stream output.
GlobalCursorDisplay.MenuCursor.Alpha = 0;

if (RuntimeInfo.EntryAssembly.GetCustomAttribute<OfficialBuildAttribute>() == null)
Logger.Log(NotificationsStrings.NotOfficialBuild.ToString());

Expand Down