diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-11-03 04:13:21 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-11-03 04:13:21 +0800 |
commit | bd4bd99373b1f3705c59392442423a38795e5bd4 (patch) | |
tree | 6e9ef5f5b8fdac9ff61f87260b40100a5a652423 /embed/mozilla/mozilla-embed.cpp | |
parent | c071808ecbd1fa1dd2cdbdede7102d7280ce0261 (diff) | |
download | gsoc2013-epiphany-bd4bd99373b1f3705c59392442423a38795e5bd4.tar gsoc2013-epiphany-bd4bd99373b1f3705c59392442423a38795e5bd4.tar.gz gsoc2013-epiphany-bd4bd99373b1f3705c59392442423a38795e5bd4.tar.bz2 gsoc2013-epiphany-bd4bd99373b1f3705c59392442423a38795e5bd4.tar.lz gsoc2013-epiphany-bd4bd99373b1f3705c59392442423a38795e5bd4.tar.xz gsoc2013-epiphany-bd4bd99373b1f3705c59392442423a38795e5bd4.tar.zst gsoc2013-epiphany-bd4bd99373b1f3705c59392442423a38795e5bd4.zip |
Unset silent after printing, otherwise the next time we print from js, the
2003-11-02 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed.cpp:
Unset silent after printing, otherwise the next time we print
from js, the dialogue will not be shown.
Diffstat (limited to 'embed/mozilla/mozilla-embed.cpp')
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index 66695ef64..e2eeeb6b8 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -1138,6 +1138,8 @@ impl_print (EphyEmbed *embed, result = wrapper->Print(options, info->preview); + options->SetPrintSilent (PR_FALSE); + return NS_SUCCEEDED (result) ? G_OK : G_FAILED; } |