1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 04:22:55 +08:00

move public member to top of file

This commit is contained in:
OliBomby 2024-08-22 19:18:38 +02:00
parent 0db068e423
commit adbdb39e9f

View File

@ -225,6 +225,9 @@ namespace osu.Game.Screens.Edit
/// </remarks>
public Bindable<bool> ComposerFocusMode { get; } = new Bindable<bool>();
[CanBeNull]
public event Action<double> ShowSampleEditPopoverRequested;
public Editor(EditorLoader loader = null)
{
this.loader = loader;
@ -1107,9 +1110,6 @@ namespace osu.Game.Screens.Edit
clock.SeekSmoothlyTo(found.StartTime);
}
[CanBeNull]
public event Action<double> ShowSampleEditPopoverRequested;
private void seekSamplePoint(int direction)
{
double currentTime = clock.CurrentTimeAccurate;