bug 329975: added missing call to update percent complete ui widget. r=jminta

This commit is contained in:
mattwillis%gmail.com 2006-03-27 02:50:02 +00:00
Родитель d8afd1c21d
Коммит d9e2f7954c
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -817,6 +817,11 @@ function loadDetails() {
updateToDoStatus(item.status);
}
/* Task percent complete */
if (isToDo(item)) {
setElementValue("percent-complete-menulist", item.getProperty("PERCENT-COMPLETE"));
}
/* Priority */
var priorityInteger = parseInt(item.priority);
if (priorityInteger >= 1 && priorityInteger <= 4) {