diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 2 |
2 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,12 @@ 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. + +2003-11-02 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-dialog.c: (impl_run): Initialise the dialogue on run too. 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; } |