Fix incorrect condition

This commit is contained in:
Dan Balasescu 2024-10-07 19:01:25 +09:00
parent 6e659e156e
commit aee5f0ebf5
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ namespace osu.Game.Input
{
public partial class OsuUserInputManager : UserInputManager
{
protected override bool AllowRightClickFromLongTouch => PlayingState.Value == LocalUserPlayingState.NotPlaying;
protected override bool AllowRightClickFromLongTouch => PlayingState.Value != LocalUserPlayingState.Playing;
public readonly IBindable<LocalUserPlayingState> PlayingState = new Bindable<LocalUserPlayingState>();