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 /my-evolution/e-summary.c | |
parent | 302eaef890f4a90e83b2118bd96e2c1fc459712e (diff) | |
download | gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar.gz gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar.bz2 gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar.lz gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar.xz gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.tar.zst gsoc2013-evolution-cc19f5cc1f16663f64c47504ae05e15e7e296d77.zip |
Stop the summary jumping to the top on redraw
svn path=/trunk/; revision=12636
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r-- | my-evolution/e-summary.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |