mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 881768 - Right-clicking on some widgets in the Panel causes it to close immediately. r=mikedeboer
This commit is contained in:
parent
e8f66d5b0e
commit
d308285f79
@ -882,7 +882,8 @@ let CustomizableUIInternal = {
|
||||
return;
|
||||
}
|
||||
|
||||
if (aEvent.type == "mouseup" && aEvent.button != 0) {
|
||||
if ((aEvent.type == "click" || aEvent.type == "mouseup") &&
|
||||
aEvent.button != 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user