mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
Bug 881768 - Right-clicking on some widgets in the Panel causes it to close immediately. r=mikedeboer
This commit is contained in:
parent
81178887a3
commit
7a2f1ad9c6
@ -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