111396 - tabbing in dialogs gives incorrect results, r=morse, sr=hyatt

This commit is contained in:
hewitt%netscape.com 2001-11-27 00:00:12 +00:00
Родитель 0a726b383e
Коммит 7216a7a59e
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -125,9 +125,9 @@
if (btn) {
btn.addEventListener("command", this._handleButtonCommand, true);
// don't set pre-defined labels on explicit buttons
if (btns.length == 0)
btn.setAttribute("label", this.mStrBundle.GetStringFromName("button-"+aDlgType));
// don't override custom labels with pre-defined labels on explicit buttons
if (!btn.hasAttribute("label"))
btn.setAttribute("label", this.mStrBundle.GetStringFromName("button-"+aDlgType));
btn._dialog = this;
}
return btn;