1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 02:07:34 +08:00

Update new obsolete usages

This commit is contained in:
Dean Herbert 2021-08-05 13:22:59 +09:00
parent 476442d1a3
commit c84bd2c74d
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ namespace osu.Game.Screens.OnlinePlay.Match.Components
case PlatformAction.DocumentNew:
// might as well also handle new tab. it's a bit of an undefined flow on this screen.
case PlatformAction.TabNew:
Click();
TriggerClick();
return true;
}

View File

@ -87,7 +87,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
switch (action)
{
case GlobalAction.Select:
selectButton.Click();
selectButton.TriggerClick();
return true;
}

View File

@ -382,7 +382,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
switch (action)
{
case GlobalAction.Select:
Click();
TriggerClick();
return true;
}