This commit is contained in:
mozilla%kewis.ch 2008-01-17 11:54:23 +00:00
Родитель 5cda2d6cb0
Коммит e76bc8a46a
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -181,10 +181,10 @@ function deleteToDoCommand(aDoNotConfirm) {
function getFocusedTaskTree() {
// Which tree is focused depends on the mode.
var taskTree;
if (gCurrentMode == "task") {
taskTree = document.getElementById("calendar-task-tree");
} else if (!gCurrentMode || gCurrentMode == "mail" || isSunbird()) {
if (isSunbird() || !gCurrentMode || gCurrentMode == "mail") {
taskTree = document.getElementById("unifinder-todo-tree");
} else if (!isSunbird() && gCurrentMode == "task") {
taskTree = document.getElementById("calendar-task-tree");
}
return taskTree;
}