Fix bug reported by Rod

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5671 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-11-20 08:58:38 +00:00
parent 9e269ca2dd
commit 1880175fea
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-11-20 John Levon <levon@movementarian.org>
* QLPainter.C: use realColor not color for the font
2002-11-18 John Levon <levon@movementarian.org>
* ui/Makefile.am:

View File

@ -249,7 +249,7 @@ Painter & QLPainter::text(int x, int y,
char const * s, size_t ls,
LyXFont const & f)
{
setPen(f.color());
setPen(f.realColor());
Encoding const * encoding = f.language()->encoding();
if (f.isSymbolFont())