Fix so the "browser.download.progressDnlgDialog.dontAskForLaunch" governs when to dcheck for the directory.

This commit is contained in:
mgalli%geckonnection.com 2006-03-24 00:35:08 +00:00
Родитель 433c662394
Коммит ed6cd68de3
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -42,6 +42,10 @@ HelperAppDlg.prototype = {
const kDownloadDirPref = "dir";
var dontAsk=branch.getBoolPref("progressDnlgDialog.dontAskForLaunch");
if(dontAsk) {
// Try and pull in download directory pref
try {
@ -63,6 +67,8 @@ HelperAppDlg.prototype = {
}
}
// Use file picker to show dialog.
var picker = Components.classes[ "@mozilla.org/filepicker;1" ]
.createInstance( nsIFilePicker );