Partial fix for bug 20200. Only allow one tree to have selection at a time. Not part of the build.

This commit is contained in:
slamm%netscape.com 1999-11-30 06:24:53 +00:00
Родитель 1b109edcc2
Коммит 5805498beb
2 изменённых файлов: 14 добавлений и 0 удалений

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

@ -352,7 +352,14 @@ function AddPanel()
addOption(database, rdfNode, isFirstAddition);
isFirstAddition = false;
}
// Remove the selection in the other list.
// Selection will move to "current" list.
var other_panels = document.getElementById('other-panels');
other_panels.clearItemSelection();
enableButtons();
enableOtherButtons();
enableSave();
}

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

@ -352,7 +352,14 @@ function AddPanel()
addOption(database, rdfNode, isFirstAddition);
isFirstAddition = false;
}
// Remove the selection in the other list.
// Selection will move to "current" list.
var other_panels = document.getElementById('other-panels');
other_panels.clearItemSelection();
enableButtons();
enableOtherButtons();
enableSave();
}