aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Popela <tpopela@redhat.com>2014-08-07 17:37:44 +0800
committerTomas Popela <tpopela@redhat.com>2014-08-07 17:37:44 +0800
commite0cb43efbc6f17a77771421823b5db936b0fecc9 (patch)
tree1302aa9fbb9530c42cdd950f219dd4097ea74c58
parented8e9ec9fec8b32c17b4cb51a9052751cb5d74b4 (diff)
downloadgsoc2013-evolution-e0cb43efbc6f17a77771421823b5db936b0fecc9.tar
gsoc2013-evolution-e0cb43efbc6f17a77771421823b5db936b0fecc9.tar.gz
gsoc2013-evolution-e0cb43efbc6f17a77771421823b5db936b0fecc9.tar.bz2
gsoc2013-evolution-e0cb43efbc6f17a77771421823b5db936b0fecc9.tar.lz
gsoc2013-evolution-e0cb43efbc6f17a77771421823b5db936b0fecc9.tar.xz
gsoc2013-evolution-e0cb43efbc6f17a77771421823b5db936b0fecc9.tar.zst
gsoc2013-evolution-e0cb43efbc6f17a77771421823b5db936b0fecc9.zip
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.
-rw-r--r--e-util/e-html-editor-view.c4
1 files changed, 3 insertions, 1 deletions
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);
}