summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2020-07-01 23:52:21 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2020-07-01 23:52:21 -0300
commit20c1196bb0db811b00aa195966d7d4c1267c5282 (patch)
tree94b322087f3dbf8a5422f98234caf5fdae5b71de
parent0a8dbe7f75f2999e0f73af83dda3510c965f2b94 (diff)
Make timeline cursor in the Bezier editor just as thick as the Animation editor
-rw-r--r--editor/animation_bezier_editor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp
index f880ece88b..e52f234218 100644
--- a/editor/animation_bezier_editor.cpp
+++ b/editor/animation_bezier_editor.cpp
@@ -31,6 +31,7 @@
#include "animation_bezier_editor.h"
#include "editor/editor_node.h"
+#include "editor_scale.h"
float AnimationBezierTrackEdit::_bezier_h_to_pixel(float p_h) {
float h = p_h;
@@ -539,7 +540,7 @@ void AnimationBezierTrackEdit::_play_position_draw() {
if (px >= timeline->get_name_limit() && px < (get_size().width - timeline->get_buttons_width())) {
Color color = get_theme_color("accent_color", "Editor");
- play_position->draw_line(Point2(px, 0), Point2(px, h), color);
+ play_position->draw_line(Point2(px, 0), Point2(px, h), color, Math::round(2 * EDSCALE));
}
}