mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 14:17:06 +09:00
Update to latest framework version.
This commit is contained in:
@ -46,7 +46,7 @@ namespace osu.Game
|
||||
//};
|
||||
//API.Queue(req);
|
||||
|
||||
AddProcessingContainer(new RatioAdjust());
|
||||
AddProcessing(new RatioAdjust());
|
||||
|
||||
//Add(new FontTest());
|
||||
|
||||
@ -62,10 +62,10 @@ namespace osu.Game
|
||||
base.Dispose(isDisposing);
|
||||
}
|
||||
|
||||
public override bool Invalidate(bool affectsSize = true, bool affectsPosition = true, Drawable source = null)
|
||||
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
||||
{
|
||||
if (!base.Invalidate(affectsSize, affectsPosition, source)) return false;
|
||||
|
||||
if (!base.Invalidate(invalidation, source, shallPropagate)) return false;
|
||||
|
||||
if (Parent != null)
|
||||
{
|
||||
Parent.Width = Config.Set(OsuConfig.Width, ActualSize.X).Value;
|
||||
|
Reference in New Issue
Block a user