Make locked curves brighter

Locked curves had roughly the same color as the background color
of the curveeditor. They are now a little bit brighter in order
to see them better.

Fixes: QDS-10130
Change-Id: Ic9cfc8358d9e1f2d4df132b27cb286653a0c35e8
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Knud Dollereder
2023-06-22 13:57:33 +02:00
parent 88f1779167
commit 4d51605866

View File

@@ -59,7 +59,7 @@ struct KeyframeItemStyleOption
double size = 10.0; double size = 10.0;
QColor color = QColor(200, 200, 0); QColor color = QColor(200, 200, 0);
QColor selectionColor = QColor(200, 200, 200); QColor selectionColor = QColor(200, 200, 200);
QColor lockedColor = QColor(50, 50, 50); QColor lockedColor = QColor(80, 80, 80);
QColor unifiedColor = QColor(250, 50, 250); QColor unifiedColor = QColor(250, 50, 250);
QColor splitColor = QColor(0, 250, 0); QColor splitColor = QColor(0, 250, 0);
}; };
@@ -71,7 +71,7 @@ struct CurveItemStyleOption
QColor errorColor = QColor(200, 0, 0); QColor errorColor = QColor(200, 0, 0);
QColor selectionColor = QColor(200, 200, 200); QColor selectionColor = QColor(200, 200, 200);
QColor easingCurveColor = QColor(200, 0, 200); QColor easingCurveColor = QColor(200, 0, 200);
QColor lockedColor = QColor(50, 50, 50); QColor lockedColor = QColor(120, 120, 120);
QColor hoverColor = QColor(200, 0, 200); QColor hoverColor = QColor(200, 0, 200);
}; };