mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-16 08:34:10 +02:00
Fix the unwanted hand cursor near bottom edge when scrub bar is on
This commit is contained in:
parent
7fbae2a1aa
commit
4b2cc463be
@ -2229,7 +2229,9 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt)
|
|||||||
? button
|
? button
|
||||||
: inScrubZone
|
: inScrubZone
|
||||||
? StatusChoice::EnteringScrubZone
|
? StatusChoice::EnteringScrubZone
|
||||||
: StatusChoice::EnteringQP;
|
: mInner.Contains(evt.GetPosition())
|
||||||
|
? StatusChoice::EnteringQP
|
||||||
|
: StatusChoice::NoChange;
|
||||||
const bool changeInZone = (zone != mPrevZone);
|
const bool changeInZone = (zone != mPrevZone);
|
||||||
const bool changing = evt.Leaving() || evt.Entering() || changeInZone;
|
const bool changing = evt.Leaving() || evt.Entering() || changeInZone;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user