From: Enrico Forestieri Date: Wed, 28 Mar 2007 00:26:04 +0000 (+0000) Subject: Present to the eyes. X-Git-Tag: 1.6.10~10453 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=151b065b450a53b7f6b509ef7652b210171aa23b;p=lyx.git 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 --- 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); }