diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | embed/print-dialog.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2004-01-04 Christian Persch <chpe@cvs.gnome.org> + + * embed/print-dialog.c: (ephy_print_dialog_response_cb): + + Fix parent for help window. + 2004-01-04 Piers Cornwell <piers@myrealbox.com> * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_get_type), diff --git a/embed/print-dialog.c b/embed/print-dialog.c index 11c80ab1b..9c528b72d 100755 --- a/embed/print-dialog.c +++ b/embed/print-dialog.c @@ -239,7 +239,7 @@ ephy_print_dialog_response_cb (GtkWidget *widget, break; case GTK_RESPONSE_HELP: - ephy_gui_help (GTK_WINDOW (dialog), "epiphany", "to-print-page"); + ephy_gui_help (GTK_WINDOW (widget), "epiphany", "to-print-page"); return; default: break; |