Bug 400935 - "Opening the identity box shouldn't select the address" [p=dao r=mconnor aM9=beltzner]

This commit is contained in:
reed@reedloden.com 2007-11-05 12:26:53 -08:00
parent 73e1405020
commit 75a5bdfa7a

View File

@ -2225,16 +2225,8 @@ function PageProxyDragGesture(aEvent)
function PageProxyClickHandler(aEvent)
{
switch (aEvent.button) {
case 0:
gURLBar.select();
break;
case 1:
if (gPrefService.getBoolPref("middlemouse.paste"))
middleMousePaste(aEvent);
break;
}
return true;
if (aEvent.button == 1 && gPrefService.getBoolPref("middlemouse.paste"))
middleMousePaste(aEvent);
}
function URLBarOnInput(evt)