Bug 613767 - Return in tab modal prompts doesn't trigger default action [r=dolske a=dolske]

Pass the number instead of the xul:button.

--HG--
extra : rebase_source : 4ef8ddbf765efe40ccb6e4e389112926cef82749
This commit is contained in:
Edward Lee 2010-11-21 22:35:26 -08:00
Родитель 4564e9b4f9
Коммит 50a5d1faf6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -208,7 +208,7 @@
let button = this.ui["button" + bnum];
if (!button.hasAttribute("default"))
return;
this.onButtonClick(button);
this.onButtonClick(bnum);
} else { // action == "cancel"
this.onButtonClick(1); // Cancel button
}