mirror of
https://github.com/ppy/osu
synced 2025-02-16 10:07:11 +00:00
Fix incorrect condition
This commit is contained in:
parent
6e659e156e
commit
aee5f0ebf5
@ -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>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user