From 846063476f4bbcae99553600fe62028b09220828 Mon Sep 17 00:00:00 2001 From: Tomas Popela Date: Thu, 3 Jul 2014 09:39:45 +0200 Subject: 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. --- e-util/e-html-editor-view.c | 4 +--- 1 file changed, 1 insertion(+), 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://"); -- cgit v1.2.3