aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-html-editor-selection.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-html-editor-selection.c')
-rw-r--r--e-util/e-html-editor-selection.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/e-util/e-html-editor-selection.c b/e-util/e-html-editor-selection.c
index 86f96ce971..ee9937fa7b 100644
--- a/e-util/e-html-editor-selection.c
+++ b/e-util/e-html-editor-selection.c
@@ -5090,8 +5090,12 @@ wrap_lines (EHTMLEditorSelection *selection,
while (nd) {
WebKitDOMNode *next_nd = webkit_dom_node_get_next_sibling (nd);
- if (WEBKIT_DOM_IS_HTMLBR_ELEMENT (nd))
- remove_node (nd);
+ if (WEBKIT_DOM_IS_HTMLBR_ELEMENT (nd)) {
+ if (remove_all_br)
+ remove_node (nd);
+ else if (element_has_class (WEBKIT_DOM_ELEMENT (nd), "-x-evo-wrap-br"))
+ remove_node (nd);
+ }
nd = next_nd;
}
}