From e0cb43efbc6f17a77771421823b5db936b0fecc9 Mon Sep 17 00:00:00 2001 From: Tomas Popela Date: Thu, 7 Aug 2014 11:37:44 +0200 Subject: EHTMLEditorView - Turn on the spell check if the inline spelling option is set Otherwise the spell check is not forced when the message is loaded into the composer. --- e-util/e-html-editor-view.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c index 414ab10976..89f078d4f2 100644 --- a/e-util/e-html-editor-view.c +++ b/e-util/e-html-editor-view.c @@ -1206,7 +1206,9 @@ html_editor_view_load_status_changed (EHTMLEditorView *view) if (view->priv->html_mode) change_cid_images_src_to_base64 (view); - if (!view->priv->inline_spelling) + if (view->priv->inline_spelling) + e_html_editor_view_force_spell_check (view); + else e_html_editor_view_turn_spell_check_off (view); } -- cgit v1.2.3