Forgot to initialize the arg to false, and th js code needs to finsih PP in the catch if an error is passed back.

Bug 157129 r=carlen sr=waterson a=asa
This commit is contained in:
rods%netscape.com 2006-09-14 06:04:09 +00:00
parent 69cf832c59
commit 6542edd527

View File

@ -267,7 +267,9 @@ function BrowserPrintPreview()
if (!notifyOnOpen.value.valueOf() || gWebProgress.value == null) {
FinishPrintPreview();
}
} catch (e) {}
} catch (e) {
FinishPrintPreview();
}
}
}