mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-24 01:01:57 +00:00
Font.cpp: fix bug #8424 also for branch
- Font.cpp: fix the bug - status.20x: fix the formatting/style
This commit is contained in:
parent
88380cfcd6
commit
0493893fdd
@ -332,7 +332,7 @@ int Font::latexWriteStartChanges(odocstream & os, BufferParams const & bparams,
|
||||
}
|
||||
}
|
||||
|
||||
// When the current language is Hebrew, Arabic, or Farsi
|
||||
// If the current language is Hebrew, Arabic, or Farsi
|
||||
// the numbers are written Left-to-Right. ArabTeX package
|
||||
// reorders the number automatically but the packages used
|
||||
// for Hebrew and Farsi (Arabi) do not.
|
||||
@ -428,7 +428,7 @@ int Font::latexWriteStartChanges(odocstream & os, BufferParams const & bparams,
|
||||
}
|
||||
os << '\\'
|
||||
<< LaTeXSizeNames[f.size()]
|
||||
<< ' ';
|
||||
<< '{';
|
||||
count += strlen(LaTeXSizeNames[f.size()]) + 2;
|
||||
}
|
||||
return count;
|
||||
@ -513,6 +513,8 @@ int Font::latexWriteEndChanges(otexstream & os, BufferParams const & bparams,
|
||||
os << '}';
|
||||
++count;
|
||||
}
|
||||
os << '}';
|
||||
++count;
|
||||
}
|
||||
|
||||
// When the current language is Hebrew, Arabic, or Farsi
|
||||
|
@ -55,18 +55,18 @@ What's new
|
||||
|
||||
* DOCUMENT INPUT/OUTPUT
|
||||
|
||||
- Do not let child document's settings override master settings
|
||||
(bug #5941).
|
||||
- Do not let child document's settings override master settings (bug 5941).
|
||||
|
||||
- Correct output of text in changed font size and with decorations (bug 8424).
|
||||
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
- Fix regression in which clicking in the main work area always resets
|
||||
the selected format in View > Source (bug #8411).
|
||||
the selected format in View > Source (bug 8411).
|
||||
|
||||
- When selecting text and Insert > Preview, immediately display the
|
||||
preview (bug #8075).
|
||||
preview (bug 8075).
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
Loading…
x
Reference in New Issue
Block a user