Fix size-change command

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/lyx-1_1_5@1241 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2000-11-27 16:27:56 +00:00
parent 1e66ee3ca6
commit 336ba00f77
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-11-27 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/bufferview_funcs.C (FontSize): fix the font-size changing
command.
2000-11-17 Matej Cepl <cepl@bigfoot.com>
* lib/kbd/czech.kmap: add apostroph mark to the Czech keyboard.

View File

@ -228,7 +228,7 @@ void Underline(BufferView * bv)
void FontSize(BufferView * bv, string const & size)
{
LyXFont font(LyXFont::ALL_IGNORE);
font.setGUISize(size);
font.setLyXSize(size);
ToggleAndShow(bv, font);
}