1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 18:20:47 +08:00

Merge pull request #3256 from peppy/fix-logo-flying

Fix logo flying off-screen when exiting game
This commit is contained in:
Dan Balasescu
2018-08-21 10:24:03 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -278,7 +278,7 @@ namespace osu.Game.Screens.Menu
if (logo != null)
{
if (logoTracking && iconFacade.IsLoaded)
if (logoTracking && logo.RelativePositionAxes == Axes.None && iconFacade.IsLoaded)
logo.Position = logoTrackingPosition;
iconFacade.Width = logo.SizeForFlow * 0.5f;