From bd4bd99373b1f3705c59392442423a38795e5bd4 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 2 Nov 2003 20:13:21 +0000 Subject: Unset silent after printing, otherwise the next time we print from js, the 2003-11-02 Christian Persch * embed/mozilla/mozilla-embed.cpp: Unset silent after printing, otherwise the next time we print from js, the dialogue will not be shown. --- ChangeLog | 7 +++++++ embed/mozilla/mozilla-embed.cpp | 2 ++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index c19740b54..70bee0324 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-11-02 Christian Persch + + * embed/mozilla/mozilla-embed.cpp: + + Unset silent after printing, otherwise the next time we print + from js, the dialogue will not be shown. + 2003-11-02 Christian Persch * lib/ephy-dialog.c: (impl_run): 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; } -- cgit