Bug 765643 - Ensure the tooltip pop up does not assert. r=IanN

This commit is contained in:
Edmund Wong 2012-07-05 09:05:21 +08:00
Родитель 4d404a9e13
Коммит ef76073688
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -345,5 +345,8 @@ function HandleToolTipEvent(aEvent)
var row = {};
tree.treeBoxObject.getCellAt(aEvent.clientX, aEvent.clientY, row, {}, {});
treeTip.label = tree.view.getItemAtIndex(row.value).tooltip;
if (row.value < 0)
aEvent.preventDefault();
else
treeTip.label = tree.view.getItemAtIndex(row.value).tooltip;
}