1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

Removed unnecessary newlines

This commit is contained in:
OpenSauce 2023-01-10 12:13:51 +00:00
parent 906ea80d52
commit ffd6168a61

View File

@ -27,14 +27,12 @@ namespace osu.Game.Rulesets.Taiko.UI
/// </summary>
public partial class DrumTouchInputArea : VisibilityContainer
{
// visibility state affects our child. we always want to handle input.
public override bool PropagatePositionalInputSubTree => true;
public override bool PropagateNonPositionalInputSubTree => true;
private KeyBindingContainer<TaikoAction> keyBindingContainer = null!;
private readonly Dictionary<object, TaikoAction> trackedActions = new Dictionary<object, TaikoAction>();
private Container mainContent = null!;
@ -247,7 +245,6 @@ namespace osu.Game.Rulesets.Taiko.UI
return colours.Red;
}))();
this.handledAction = handledAction;
RelativeSizeAxes = Axes.Both;