[evolution] EHTMLEditorView - Select the right node for processing after the new line was inserted into the quot



commit 86474af102cf9398b713220130bbeb1a5efef1ab
Author: Tomas Popela <tpopela redhat com>
Date:   Tue Jul 22 15:30:28 2014 +0200

    EHTMLEditorView - Select the right node for processing after the new line was inserted into the quoted 
content

 e-util/e-html-editor-view.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c
index 480d681..2029c86 100644
--- a/e-util/e-html-editor-view.c
+++ b/e-util/e-html-editor-view.c
@@ -545,10 +545,13 @@ insert_new_line_into_citation (EHTMLEditorView *view,
                                e_html_editor_selection_get_word_wrap_length (selection);
                        WebKitDOMNode *node;
 
-                       citation_level = get_citation_level (next_sibling, FALSE);
+                       node = webkit_dom_node_get_first_child (next_sibling);
+                       while (node && is_citation_node (node))
+                               node = webkit_dom_node_get_first_child (node);
+
+                       citation_level = get_citation_level (node, FALSE);
                        length = word_wrap_length - 2 * citation_level;
 
-                       node = webkit_dom_node_get_first_child (next_sibling);
                        /* Rewrap and requote first block after the newly inserted line */
                        if (node && WEBKIT_DOM_IS_ELEMENT (node)) {
                                remove_quoting_from_element (WEBKIT_DOM_ELEMENT (node));


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]