Fix bug 3143 by Richard Heck. Background information from Richard:

breakParagraph seems to be called five times: in buffer.C, by
insertStringAsLines; and in text3.C, for LFUN_BREAK_PARAGRAPH,
LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT, LFUN_BREAK_PARAGRAPH_SKIP (which
itself calls LFUN_BREAK_PARAGRAPH if a paragraph will be broken), and
for LFUN_FLOAT_LIST. My sense was that the KEEP_LAYOUT version maybe
shouldn't reset the text style.  That's why I put it where I did. But I
doubt it matters very much, and I had it in breakParagraph myself at one
point.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17612 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-03-28 15:22:39 +00:00
parent d5bedcb874
commit 3b9f86926d

View File

@ -652,6 +652,8 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
case LFUN_BREAK_PARAGRAPH:
cap::replaceSelection(cur);
breakParagraph(cur, 0);
//Reset text style to default
setFont(cur, LyXFont(LyXFont::ALL_INHERIT), 0);
cur.resetAnchor();
bv->switchKeyMap();
break;