зеркало из https://github.com/mozilla/gecko-dev.git
Fix 55592, clicking on blank tree in Sidebar tries to load http://advanceddeck/ r=rjc a=waterson
This commit is contained in:
Родитель
4e71100832
Коммит
97b0497ee2
|
@ -685,6 +685,9 @@ function checkSearchProgress()
|
|||
|
||||
function sidebarOpenURL(event, treeitem, root)
|
||||
{
|
||||
if (event.target.localName != "treecell") //make sure they clicked on a real cell
|
||||
return false;
|
||||
|
||||
mClickCount = nsPreferences.getBoolPref("browser.search.use_double_clicks", false) ? 2 : 1;
|
||||
|
||||
if ((event.button != 1) || (event.detail != mClickCount))
|
||||
|
|
Загрузка…
Ссылка в новой задаче