mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Merge branch 'general-fixes' into beatmap_framework
Conflicts: osu-framework
This commit is contained in:
@ -12,8 +12,8 @@ namespace osu.Game.Graphics.Processing
|
||||
protected override void Update()
|
||||
{
|
||||
base.Update();
|
||||
Scale = Parent.ActualSize.Y / 768f;
|
||||
Size = new Vector2(1 / Scale);
|
||||
Scale = new Vector2(Parent.ActualSize.Y / 768f);
|
||||
Size = new Vector2(1 / Scale.X);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -70,8 +70,8 @@ namespace osu.Game.Graphics.UserInterface
|
||||
SizeMode = InheritMode.Y,
|
||||
Alpha = 0
|
||||
};
|
||||
TextContainer.Add(cursor);
|
||||
|
||||
TextContainer.Add(cursor);
|
||||
TextContainer.Add(textFlow);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user