[evolution] EHTMLEditorView - Some empty new lines in a quoted content could be lost
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] EHTMLEditorView - Some empty new lines in a quoted content could be lost
- Date: Wed, 1 Jun 2016 13:09:51 +0000 (UTC)
commit 071890425374a3aacfcd90ec8920caeb0ca3efcb
Author: Tomas Popela <tpopela redhat com>
Date: Wed Jun 1 15:00:38 2016 +0200
EHTMLEditorView - Some empty new lines in a quoted content could be lost
e-util/e-html-editor-view.c | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
---
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c
index 2add5e4..10c1104 100644
--- a/e-util/e-html-editor-view.c
+++ b/e-util/e-html-editor-view.c
@@ -7490,6 +7490,8 @@ parse_html_into_blocks (EHTMLEditorView *view,
while (next_br) {
gboolean local_ignore_next_br = ignore_next_br;
gboolean local_preserve_next_line = preserve_next_line;
+ gboolean local_previously_had_empty_citation_start =
+ previously_had_empty_citation_start;
gboolean preserve_block = TRY_TO_PRESERVE_BLOCKS;
const gchar *citation = NULL, *citation_end = NULL;
const gchar *rest = NULL, *with_br = NULL;
@@ -7703,6 +7705,14 @@ parse_html_into_blocks (EHTMLEditorView *view,
parent,
block_template,
"<br id=\"-x-evo-first-br\">");
+ } else if (local_previously_had_empty_citation_start &&
+ !citation && with_br && rest && !*rest) {
+ /* Empty citation */
+ if (block)
+ append_new_block (parent, &block);
+
+ block = create_and_append_new_block (
+ selection, document, parent, block_template, "<br>");
} else
preserve_next_line = FALSE;
} else if (first_element && !citation_was_first_element) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]