mirror of https://github.com/ppy/osu
Specify RelativeSizeAxes in ctor
This is basically always the behaviour we want.
This commit is contained in:
parent
626048038c
commit
266873740d
|
@ -32,6 +32,7 @@ public class IdleTracker : Component, IKeyBindingHandler<PlatformAction>, IHandl
|
|||
public IdleTracker(double timeToIdle)
|
||||
{
|
||||
this.timeToIdle = timeToIdle;
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
}
|
||||
|
||||
protected override void Update()
|
||||
|
|
Loading…
Reference in New Issue