diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index dbc04ad39..62af22e82 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -973,6 +973,9 @@ impl_print (EphyEmbed *embed, result = mpriv->browser->Print(options, info->preview); + /* Workaround for bug 125984 */ + options->SetPrintSilent (PR_FALSE); + return NS_SUCCEEDED (result) ? G_OK : G_FAILED; } |