mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 17:23:52 +08:00
Formatting fixes
This commit is contained in:
parent
a997ec6139
commit
5c036b966b
@ -26,9 +26,8 @@ namespace osu.Game.Rulesets.Edit
|
||||
public event Action<HitObjectMask> Deselected;
|
||||
|
||||
/// <summary>
|
||||
/// Invoked when this <see cref="HitObjectMask"/> has rqeuested selection.
|
||||
/// Will fire even if already selected.
|
||||
/// Does not actually perform selection.
|
||||
/// Invoked when this <see cref="HitObjectMask"/> has requested selection.
|
||||
/// Will fire even if already selected. Does not actually perform selection.
|
||||
/// </summary>
|
||||
public event Action<HitObjectMask> SelectionRequested;
|
||||
|
||||
|
@ -34,6 +34,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Layers
|
||||
public DragLayer(Action<RectangleF> performSelection)
|
||||
{
|
||||
this.performSelection = performSelection;
|
||||
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
AlwaysPresent = true;
|
||||
Alpha = 0;
|
||||
|
@ -23,6 +23,9 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Layers
|
||||
/// </summary>
|
||||
public event Action<HitObjectMask> MaskDeselected;
|
||||
|
||||
/// <summary>
|
||||
/// Invoked when any <see cref="HitObjectMask"/> requests selection.
|
||||
/// </summary>
|
||||
public event Action<HitObjectMask> MaskSelectionRequested;
|
||||
|
||||
private IEnumerable<HitObjectMask> aliveMasks => AliveInternalChildren.Cast<HitObjectMask>();
|
||||
|
Loading…
Reference in New Issue
Block a user