1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-04 04:05:46 +01:00

Fix :dia printpreview on FF4. Closes issue #75.

This commit is contained in:
Kris Maglione
2010-10-12 10:54:59 -04:00
parent db346d8c29
commit 2cdd59b1d4

View File

@@ -76,7 +76,7 @@ const Config = Module("config", ConfigBase, {
preferences: ["Show Firefox preferences dialog",
function () { window.openPreferences(); }],
printpreview: ["Preview the page before printing",
function () { PrintUtils.printPreview(onEnterPrintPreview, onExitPrintPreview); }],
function () { PrintUtils.printPreview(window.PrintPreviewListener || onEnterPrintPreview, window.onExitPrintPreview); }],
printsetup: ["Setup the page size and orientation before printing",
function () { PrintUtils.showPageSetup(); }],
print: ["Show print dialog",