Bug 363965 - Fix regression in text selection

r=samuel@sieb.net (Samuel Sieb)
ChatZilla Only.
This commit is contained in:
gijskruitbosch%gmail.com 2007-01-09 00:13:42 +00:00
Родитель 647c4432cc
Коммит de54848011
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -202,14 +202,14 @@ function onMessageViewMouseDown(e)
if ((typeof startScrolling != "function") ||
((e.which != 1) && (e.which != 2)))
{
return false;
return true;
}
var cx = getMessagesContext(null, e.target);
var command = getEventCommand(e);
if (!client.commandManager.isCommandSatisfied(cx, command))
startScrolling(e);
return false;
return true;
}
function getEventCommand(e)