diff --git a/data/webkit/e-editor.js b/data/webkit/e-editor.js index 49b869e0a3..9d6c51f75a 100644 --- a/data/webkit/e-editor.js +++ b/data/webkit/e-editor.js @@ -5999,8 +5999,11 @@ EvoEditor.processLoadedContent = function() } if (EvoEditor.mode == EvoEditor.MODE_PLAIN_TEXT) { - EvoEditor.convertTags(); - EvoEditor.convertParagraphs(document.body, 0, EvoEditor.NORMAL_PARAGRAPH_WIDTH, didCite); + // drafts have paragraphs set as expected + if (!document.body.hasAttribute("data-evo-draft")) { + EvoEditor.convertTags(); + EvoEditor.convertParagraphs(document.body, 0, EvoEditor.NORMAL_PARAGRAPH_WIDTH, didCite); + } if (EvoEditor.MAGIC_LINKS) { var next;