1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 23:59:37 +02:00

Highlight active AButtons when hover over, not just the toggle buttons. Fixes issue for small and large buttons. Paul L's patch. No impact on manual. Not tracked in Bugzilla.

This commit is contained in:
james.k.crook@gmail.com 2014-08-19 13:45:51 +00:00
parent b19c1fbeb5
commit fc7d961294

View File

@ -196,7 +196,7 @@ AButton::AButtonState AButton::GetState()
state = mButtonIsDown ? AButtonOver : AButtonDown;
}
else {
state = mButtonIsDown ? AButtonDown : AButtonUp;
state = mButtonIsDown ? AButtonDown : AButtonOver;
}
}
}