Port Bug #92726 to thunderbird --> Save As should default to the message subject

This commit is contained in:
scott%scott-macgregor.org 2003-10-24 21:42:29 +00:00
Родитель 715923b1a5
Коммит c6f7e8d5e4
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -1775,7 +1775,10 @@ function Save()
function SaveAsFile(saveAs)
{
dump("SaveAsFile from XUL\n");
dump("SaveAsFile from XUL\n");
var subject = document.getElementById('msgSubject').value;
GetCurrentEditor().setDocumentTitle(subject);
if (gMsgCompose.bodyConvertible() == nsIMsgCompConvertible.Plain)
SaveDocument(saveAs, false, "text/plain");
else