changeset 28979:c6f81afdcd28

maint: merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 22 Oct 2020 14:07:35 +0200
parents 322a650906b5 (current diff) 1152256be2cf (diff)
children d632d99d5c2e
files
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/qterminal/libqterminal/win32/QTerminalColors.cpp	Wed Oct 21 17:05:08 2020 -0700
+++ b/libgui/qterminal/libqterminal/win32/QTerminalColors.cpp	Thu Oct 22 14:07:35 2020 +0200
@@ -31,19 +31,19 @@
     : QMap<int, QColor> ()
 {
   (*this)[0]  = Qt::white;
-  (*this)[1]  = Qt::darkBlue;
-  (*this)[2]  = Qt::darkGreen;
-  (*this)[3]  = Qt::darkCyan;
-  (*this)[4]  = Qt::darkRed;
-  (*this)[5]  = Qt::darkMagenta;
-  (*this)[6]  = Qt::darkYellow;
+  (*this)[1]  = Qt::blue;
+  (*this)[2]  = Qt::green;
+  (*this)[3]  = Qt::cyan;
+  (*this)[4]  = Qt::red;
+  (*this)[5]  = Qt::magenta;
+  (*this)[6]  = Qt::yellow;
   (*this)[7]  = Qt::black;
-  (*this)[8]  = Qt::darkGray;
-  (*this)[9]  = Qt::blue;
-  (*this)[10] = Qt::green;
-  (*this)[11] = Qt::cyan;
-  (*this)[12] = Qt::red;
-  (*this)[13] = Qt::magenta;
-  (*this)[14] = Qt::yellow;
-  (*this)[15] = Qt::lightGray;
+  (*this)[8]  = Qt::lightGray;
+  (*this)[9]  = Qt::darkBlue;
+  (*this)[10] = Qt::darkGreen;
+  (*this)[11] = Qt::darkCyan;
+  (*this)[12] = Qt::darkRed;
+  (*this)[13] = Qt::darkMagenta;
+  (*this)[14] = Qt::darkYellow;
+  (*this)[15] = Qt::darkGray;
 }