From 9be8b341ff2fed4b8b6e65feca9fac285352e537 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 9 Oct 2020 21:51:07 +0200 Subject: [PATCH] lighter blue for cursorD, more visible --- client/src/proxguiqt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/proxguiqt.cpp b/client/src/proxguiqt.cpp index 188634889..6ba6b7ab7 100644 --- a/client/src/proxguiqt.cpp +++ b/client/src/proxguiqt.cpp @@ -596,7 +596,7 @@ void Plot::paintEvent(QPaintEvent *event) { painter.drawLine(xCoordOf(CursorCPos, plotRect), plotRect.top(), xCoordOf(CursorCPos, plotRect), plotRect.bottom()); } if (CursorDPos > GraphStart && xCoordOf(CursorDPos, plotRect) < plotRect.right()) { - painter.setPen(QColor(0, 0, 205)); //light blue + painter.setPen(QColor(100, 209, 246)); //light blue painter.drawLine(xCoordOf(CursorDPos, plotRect), plotRect.top(), xCoordOf(CursorDPos, plotRect), plotRect.bottom()); }