aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--embed/mozilla/mozilla-embed.cpp2
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c19740b54..70bee0324 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;
}