diff options
Diffstat (limited to 'editor')
-rw-r--r-- | editor/animation_bezier_editor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp index f0dc3ce305..6f9e7308c3 100644 --- a/editor/animation_bezier_editor.cpp +++ b/editor/animation_bezier_editor.cpp @@ -408,7 +408,8 @@ void AnimationBezierTrackEdit::_notification(int p_what) { } //draw edited curve - _draw_track(track, accent); + const Color highlight = get_color("highlight_color", "Editor"); + _draw_track(track, highlight); } //draw editor handles |