Merge branch 'master' into use-pattern-matching

This commit is contained in:
Dean Herbert
2019-02-28 14:53:07 +09:00
committed by GitHub
306 changed files with 1009 additions and 623 deletions

View File

@ -482,6 +482,7 @@ namespace osu.Game
overlay.StateChanged += state =>
{
if (state == Visibility.Hidden) return;
singleDisplaySideOverlays.Where(o => o != overlay).ForEach(o => o.Hide());
};
}
@ -495,6 +496,7 @@ namespace osu.Game
overlay.StateChanged += state =>
{
if (state == Visibility.Hidden) return;
informationalOverlays.Where(o => o != overlay).ForEach(o => o.Hide());
};
}