diff options
author | Tomas Popela <tpopela@redhat.com> | 2014-07-03 15:39:45 +0800 |
---|---|---|
committer | Tomas Popela <tpopela@redhat.com> | 2014-07-03 15:39:45 +0800 |
commit | 846063476f4bbcae99553600fe62028b09220828 (patch) | |
tree | 911d4bb155e3ef1a84cd13ed7334aaf61da96203 | |
parent | de8a0a960ebb3854d614e3f10cb56a29c50737eb (diff) | |
download | gsoc2013-evolution-846063476f4bbcae99553600fe62028b09220828.tar gsoc2013-evolution-846063476f4bbcae99553600fe62028b09220828.tar.gz gsoc2013-evolution-846063476f4bbcae99553600fe62028b09220828.tar.bz2 gsoc2013-evolution-846063476f4bbcae99553600fe62028b09220828.tar.lz gsoc2013-evolution-846063476f4bbcae99553600fe62028b09220828.tar.xz gsoc2013-evolution-846063476f4bbcae99553600fe62028b09220828.tar.zst gsoc2013-evolution-846063476f4bbcae99553600fe62028b09220828.zip |
EHTMLEditorView - Fix reply to message
After commit 8a004f3e we are finally sure that the text that is passed
into e_html_editor_view_set_text_html function has always the HTML
content, so don't try to treat it as plain text.
-rw-r--r-- | e-util/e-html-editor-view.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c index 19f5758bd1..5262dec41c 100644 --- a/e-util/e-html-editor-view.c +++ b/e-util/e-html-editor-view.c @@ -6178,10 +6178,8 @@ e_html_editor_view_set_text_html (EHTMLEditorView *view, WEBKIT_WEB_VIEW (view), text, NULL, NULL, "file://"); return; } - convert_and_load_html_to_plain_text (view, text); - } else { - convert_and_load_plain_text (view, text); } + convert_and_load_html_to_plain_text (view, text); } else { webkit_web_view_load_string ( WEBKIT_WEB_VIEW (view), text, NULL, NULL, "file://"); |