mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-08 10:11:21 +00:00
RTL fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@1620 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fed46e5525
commit
2efed57c40
@ -1,3 +1,7 @@
|
||||
2001-02-26 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* src/text2.C (SetCurrentFont): Disable number property at boundary.
|
||||
|
||||
2001-02-23 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* src/tabular.C (AppendColumn): fixed initialitation of column_struct.
|
||||
|
@ -2921,7 +2921,9 @@ void LyXText::SetCurrentFont(BufferView * bview) const
|
||||
Language const * lang =
|
||||
cursor.par()->getParLanguage(bview->buffer()->params);
|
||||
current_font.setLanguage(lang);
|
||||
current_font.setNumber(LyXFont::OFF);
|
||||
real_current_font.setLanguage(lang);
|
||||
real_current_font.setNumber(LyXFont::OFF);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user