]> git.lyx.org Git - lyx.git/commitdiff
Present to the eyes.
authorEnrico Forestieri <forenr@lyx.org>
Wed, 28 Mar 2007 00:26:04 +0000 (00:26 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Wed, 28 Mar 2007 00:26:04 +0000 (00:26 +0000)
* 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
src/frontends/qt4/QViewSource.C

index 6d6cc8556abdda34f80fd2d2c8e49e717e269375..565f1c3756cf5cf96e0191adc20ac9a6add6f9fc 100644 (file)
@@ -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);
 }
index 5a7893ecc1826863c0c9c7b772a429a080421c2b..c9ada5c6baa8ac8892ce25f2ce4e8e458475d4e3 100644 (file)
@@ -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);
 }