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:
Dekel Tsur 2001-02-26 10:49:51 +00:00
parent fed46e5525
commit 2efed57c40
2 changed files with 6 additions and 0 deletions

View File

@ -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.

View File

@ -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);
}
}