mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 400935 - "Opening the identity box shouldn't select the address" [p=dao r=mconnor aM9=beltzner]
This commit is contained in:
parent
73e1405020
commit
75a5bdfa7a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user