1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-17 15:47:20 +08:00

Merge pull request #4459 from Joehuu/fix-chan-sel-dimming-forever

Fix channel selection overlay leaving background dimmed when popped out
This commit is contained in:
Dan Balasescu 2019-03-12 12:32:50 +09:00 committed by GitHub
commit fc7cb14388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -320,6 +320,8 @@ namespace osu.Game.Overlays
this.MoveToY(Height, transition_length, Easing.InSine);
this.FadeOut(transition_length, Easing.InSine);
channelSelectionOverlay.State = Visibility.Hidden;
textbox.HoldFocus = false;
base.PopOut();
}