mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
* Paragraph.cpp:
- correct the kerning between two subsequent '<' or '>' characters. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@25437 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fd5e171bad
commit
2c674129b9
@ -901,14 +901,8 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const & buf,
|
||||
if ((c == '>' || c == '<')
|
||||
&& i <= size() - 2
|
||||
&& getChar(i + 1) == c) {
|
||||
//os << "\\textcompwordmark{}";
|
||||
//column += 19;
|
||||
// Jean-Marc, have a look at
|
||||
// this. I think this works
|
||||
// equally well:
|
||||
os << "\\,{}";
|
||||
// Lgb
|
||||
column += 3;
|
||||
os << "\\textcompwordmark{}";
|
||||
column += 19;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -92,6 +92,7 @@ What's new
|
||||
|
||||
- Fix encoding errors when typewriter font is used (bug 4727).
|
||||
|
||||
- Correct the kerning between two subsequent '<' or '>' characters.
|
||||
|
||||
|
||||
* USER INTERFACE
|
||||
|
Loading…
Reference in New Issue
Block a user