aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-11-02 18:48:30 +0800
committerChristian Persch <chpe@src.gnome.org>2003-11-02 18:48:30 +0800
commit1ea57d5ec0e658a86e5eb61842c34dcbc1f54120 (patch)
tree131afa650dca3ab2451c2b1d3d10e7435dec9b47 /embed
parent6e405014c2d318e595d777efdac6c23e5bce1a69 (diff)
downloadgsoc2013-epiphany-1ea57d5ec0e658a86e5eb61842c34dcbc1f54120.tar
gsoc2013-epiphany-1ea57d5ec0e658a86e5eb61842c34dcbc1f54120.tar.gz
gsoc2013-epiphany-1ea57d5ec0e658a86e5eb61842c34dcbc1f54120.tar.bz2
gsoc2013-epiphany-1ea57d5ec0e658a86e5eb61842c34dcbc1f54120.tar.lz
gsoc2013-epiphany-1ea57d5ec0e658a86e5eb61842c34dcbc1f54120.tar.xz
gsoc2013-epiphany-1ea57d5ec0e658a86e5eb61842c34dcbc1f54120.tar.zst
gsoc2013-epiphany-1ea57d5ec0e658a86e5eb61842c34dcbc1f54120.zip
Unset silent mode after printing, should fix bug #125984.
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.
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/mozilla-embed.cpp3
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;
}