Fix 55592, clicking on blank tree in Sidebar tries to load http://advanceddeck/ r=rjc a=waterson

This commit is contained in:
blakeross%telocity.com 2000-10-11 21:52:51 +00:00
Родитель 4e71100832
Коммит 97b0497ee2
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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))