diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2003-11-02 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/mozilla-embed.cpp: (impl_print): + + Unset silent mode after printing, should fix bug #125984. + 2003-11-01 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-history.c: (ephy_history_save), (hosts_added_cb), 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; } |