aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h
diff options
context:
space:
mode:
authorKnud Dollereder <knud.dollereder@qt.io>2023-06-22 13:57:33 +0200
committerKnud Dollereder <knud.dollereder@qt.io>2023-06-22 15:31:00 +0000
commit4d516058665e79ffc06d17d82ff1d422e290faae (patch)
tree60a9d1f387203292da3ff10104deb53ac064d3af /src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h
parent88f1779167763fc2736988cc6ba2c8aec85ffaac (diff)
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>
Diffstat (limited to 'src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h')
-rw-r--r--src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h b/src/plugins/qmldesigner/components/curveeditor/curveeditorstyle.h
index 163f998d7d..8193bdbf53 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);
};