Apply offset by a factor of 0.8x from screen offset

This commit is contained in:
Salman Ahmed 2022-05-06 22:20:04 +03:00
parent 049fed42e2
commit 8080f784fd

View File

@ -1153,7 +1153,7 @@ namespace osu.Game
horizontalOffset += (Content.ToLocalSpace(Notifications.ScreenSpaceDrawQuad.TopLeft).X - Content.DrawWidth) * SIDE_OVERLAY_OFFSET_RATIO;
ScreenOffsetContainer.X = horizontalOffset;
overlayContent.X = horizontalOffset;
overlayContent.X = horizontalOffset * 0.8f;
MenuCursorContainer.CanShowCursor = (ScreenStack.CurrentScreen as IOsuScreen)?.CursorVisible ?? false;
}