Bug 881768 - Right-clicking on some widgets in the Panel causes it to close immediately. r=mikedeboer

This commit is contained in:
Jared Wein 2013-06-12 14:28:48 -04:00
parent 81178887a3
commit 7a2f1ad9c6

View File

@ -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;
}