From 4d516058665e79ffc06d17d82ff1d422e290faae Mon Sep 17 00:00:00 2001 From: Knud Dollereder Date: Thu, 22 Jun 2023 13:57:33 +0200 Subject: [PATCH] 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: Reviewed-by: Thomas Hartmann --- .../qmldesigner/components/curveeditor/curveeditorstyle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h b/src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h index 163f998d7d1..8193bdbf530 100644 --- a/src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h +++ b/src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h @@ -59,7 +59,7 @@ struct KeyframeItemStyleOption double size = 10.0; QColor color = QColor(200, 200, 0); 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 splitColor = QColor(0, 250, 0); }; @@ -71,7 +71,7 @@ struct CurveItemStyleOption QColor errorColor = QColor(200, 0, 0); QColor selectionColor = QColor(200, 200, 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); };