From: Uwe Stöhr Date: Sat, 16 May 2015 01:32:45 +0000 (+0200) Subject: GuiCharacter.cpp: sort all colors, also white X-Git-Tag: 2.2.0alpha1~823 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a49f24767afceb4809c89f27579e880a5db4188a;p=features.git GuiCharacter.cpp: sort all colors, also white as proposed by Scott --- diff --git a/src/frontends/qt4/GuiCharacter.cpp b/src/frontends/qt4/GuiCharacter.cpp index a947143235..48453c3b37 100644 --- a/src/frontends/qt4/GuiCharacter.cpp +++ b/src/frontends/qt4/GuiCharacter.cpp @@ -94,7 +94,6 @@ static QList colorData() colors << ColorPair(qt_("No change"), Color_ignore); colors << ColorPair(qt_("No color"), Color_none); colors << ColorPair(qt_("Black"), Color_black); - colors << ColorPair(qt_("White"), Color_white); colors << ColorPair(qt_("Blue"), Color_blue); colors << ColorPair(qt_("Brown"), Color_brown); colors << ColorPair(qt_("Cyan"), Color_cyan); @@ -111,6 +110,7 @@ static QList colorData() colors << ColorPair(qt_("Red"), Color_red); colors << ColorPair(qt_("Teal"), Color_teal); colors << ColorPair(qt_("Violet"), Color_violet); + colors << ColorPair(qt_("White"), Color_white); colors << ColorPair(qt_("Yellow"), Color_yellow); colors << ColorPair(qt_("Reset"), Color_inherit); return colors;