mirror of https://github.com/ppy/osu
Fix taps on judged circles changing cursor position
This commit is contained in:
parent
260c224619
commit
ff0c0d54c9
|
@ -47,7 +47,7 @@ public bool CheckScreenSpaceActionPressJudgeable(Vector2 screenSpacePosition) =>
|
|||
//
|
||||
// Based on user feedback of more nuanced scenarios (where touch doesn't behave as expected),
|
||||
// this can be expanded to a more complex implementation, but I'd still want to keep it as simple as we can.
|
||||
NonPositionalInputQueue.OfType<DrawableHitCircle.HitReceptor>().Any(c => c.ReceivePositionalInputAt(screenSpacePosition));
|
||||
NonPositionalInputQueue.OfType<DrawableHitCircle.HitReceptor>().Any(c => c.CanBeHit() && c.ReceivePositionalInputAt(screenSpacePosition));
|
||||
|
||||
public OsuInputManager(RulesetInfo ruleset)
|
||||
: base(ruleset, 0, SimultaneousBindingMode.Unique)
|
||||
|
|
Loading…
Reference in New Issue