Use Click instead of now removed TriggerOnClick

This commit is contained in:
ekrctb
2018-09-18 18:05:25 +09:00
parent a3e6973b41
commit b790e16217
8 changed files with 13 additions and 13 deletions

View File

@ -66,7 +66,7 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
},
};
Action = () => playButton.TriggerOnClick();
Action = () => playButton.Click();
Playing.ValueChanged += newValue => progress.FadeTo(newValue ? 1 : 0, 100);
}