diff options
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/e-summary.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index f66ab4db98..dbac113861 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,5 +1,10 @@ 2001-09-05 Iain Holmes <iain@ximian.com> + * e-summary.c (e_summary_draw): Hack to stop the display jumping to the + top when it is redrawn. + +2001-09-05 Iain Holmes <iain@ximian.com> + * e-summary-calendar.c (generate_html): Check if we need to use 24hr format. Don't try to do fancy things with the date and time of an appointment. diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c index 788945be73..8d816617b9 100644 --- a/my-evolution/e-summary.c +++ b/my-evolution/e-summary.c @@ -182,7 +182,7 @@ e_summary_draw (ESummary *summary) g_string_append (string, HTML_5); stream = gtk_html_begin (GTK_HTML (summary->priv->html)); -/* GTK_HTML (summary->priv->html)->engine->newPage = FALSE; */ + GTK_HTML (summary->priv->html)->engine->newPage = FALSE; gtk_html_write (GTK_HTML (summary->priv->html), stream, string->str, strlen (string->str)); gtk_html_end (GTK_HTML (summary->priv->html), stream, GTK_HTML_STREAM_OK); |