mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-17 08:40:27 +02:00
Bug 2285 - Many action buttons and items in Toolbars activate the action on right-click (expect context menu or null action)
This commit is contained in:
parent
2a4421bf92
commit
6c69484899
@ -467,7 +467,7 @@ void AButton::OnMouseEvent(wxMouseEvent & event)
|
||||
event.m_x < clientSize.x && event.m_y < clientSize.y);
|
||||
|
||||
if (mEnabled && event.IsButton()) {
|
||||
if (event.ButtonIsDown(wxMOUSE_BTN_ANY)) {
|
||||
if (event.ButtonIsDown(wxMOUSE_BTN_LEFT)) {
|
||||
mIsClicking = true;
|
||||
if (event.ButtonDClick())
|
||||
mIsDoubleClicked = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user