mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Call to textrow.start after a multi-line inset.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2817 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
88c555f798
commit
708b299287
@ -1,3 +1,8 @@
|
||||
2001-09-29 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
|
||||
after a multi-line inset.
|
||||
|
||||
2001-09-28 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* paragraph.C (validate): Set NeedLyXFootnoteCode
|
||||
|
@ -284,13 +284,14 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const * buf,
|
||||
os << "}";
|
||||
|
||||
if (tmp) {
|
||||
for (int j = 0; j < tmp; ++j) {
|
||||
texrow.newline();
|
||||
}
|
||||
texrow.start(owner_, i + 1);
|
||||
column = 0;
|
||||
} else {
|
||||
column += int(os.tellp()) - len;
|
||||
}
|
||||
for (; tmp--;) {
|
||||
texrow.newline();
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user