From 151b065b450a53b7f6b509ef7652b210171aa23b Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Wed, 28 Mar 2007 00:26:04 +0000 Subject: [PATCH] Present to the eyes. * src/frontends/qt4/QLog.C (logHighlighter::logHighlighter): Use a darker gray. * src/frontends/qt4/QViewSource.C (latexHighlighter::latexHighlighter): Ditto. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17604 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/QLog.C | 2 +- src/frontends/qt4/QViewSource.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt4/QLog.C b/src/frontends/qt4/QLog.C index 6d6cc8556a..565f1c3756 100644 --- a/src/frontends/qt4/QLog.C +++ b/src/frontends/qt4/QLog.C @@ -36,7 +36,7 @@ QLog::QLog(Dialog & parent) logHighlighter::logHighlighter(QTextDocument * parent) : QSyntaxHighlighter(parent) { - infoFormat.setForeground(Qt::gray); + infoFormat.setForeground(Qt::darkGray); warningFormat.setForeground(Qt::darkBlue); errorFormat.setForeground(Qt::red); } diff --git a/src/frontends/qt4/QViewSource.C b/src/frontends/qt4/QViewSource.C index 5a7893ecc1..c9ada5c6ba 100644 --- a/src/frontends/qt4/QViewSource.C +++ b/src/frontends/qt4/QViewSource.C @@ -25,7 +25,7 @@ latexHighlighter::latexHighlighter(QTextDocument * parent) : { keywordFormat.setForeground(Qt::darkBlue); keywordFormat.setFontWeight(QFont::Bold); - commentFormat.setForeground(Qt::gray); + commentFormat.setForeground(Qt::darkGray); mathFormat.setForeground(Qt::red); }