diff options
Diffstat (limited to 'e-util/e-html-editor-view.c')
-rw-r--r-- | e-util/e-html-editor-view.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c index 7843bd1c87..dde877f6ee 100644 --- a/e-util/e-html-editor-view.c +++ b/e-util/e-html-editor-view.c @@ -5862,6 +5862,10 @@ process_elements (EHTMLEditorView *view, g_free (tmp); content = webkit_dom_node_get_text_content (child); g_regex_unref (regex); + } else if (content && *content) { + /* Some it happens that some text is written inside + * the tab span element, so save it. */ + g_string_append (buffer, content); } } if (to_html) { |