diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-06 06:42:16 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-06 06:42:16 +0800 |
commit | cc19f5cc1f16663f64c47504ae05e15e7e296d77 (patch) | |
tree | ac9a6f4169f3e28fca56b3e1bc8782b756d0d25f | |
parent | 302eaef890f4a90e83b2118bd96e2c1fc459712e (diff) | |
download | gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar.gz gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar.zst gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.zip |
Stop the summary jumping to the top on redraw
svn path=/trunk/; revision=12636
-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); |