diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-31 15:33:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 15:33:40 +0200 |
commit | 368fb62a2274abbea072798c86a6734797104ad8 (patch) | |
tree | a7d5a2769e1610790852c1e04f3595a91f24d475 /editor | |
parent | a647fb3e623c8e5c14427c2631ee61f132951709 (diff) | |
parent | c7e06e2202c97dbd75933fe1b587d668a717c5f2 (diff) |
Merge pull request #59728 from timothyqiu/clip-key
Diffstat (limited to 'editor')
-rw-r--r-- | editor/animation_track_editor_plugins.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editor/animation_track_editor_plugins.cpp b/editor/animation_track_editor_plugins.cpp index 2ad8b2d2a4..d07881e28e 100644 --- a/editor/animation_track_editor_plugins.cpp +++ b/editor/animation_track_editor_plugins.cpp @@ -339,11 +339,11 @@ void AnimationTrackEditAudio::draw_key(int p_index, float p_pixels_sec, int p_x, Rect2 rect(Vector2(p_x, int(get_size().height - fh) / 2), Size2(fh, fh)); Color color = get_theme_color(SNAME("font_color"), SNAME("Label")); - draw_rect(rect, color); + draw_rect_clipped(rect, color); if (p_selected) { Color accent = get_theme_color(SNAME("accent_color"), SNAME("Editor")); - draw_rect(rect, accent, false); + draw_rect_clipped(rect, accent, false); } } } @@ -712,11 +712,11 @@ void AnimationTrackEditSubAnim::draw_key(int p_index, float p_pixels_sec, int p_ Rect2 rect(Vector2(p_x, int(get_size().height - fh) / 2), Size2(fh, fh)); Color color = get_theme_color(SNAME("font_color"), SNAME("Label")); - draw_rect(rect, color); + draw_rect_clipped(rect, color); if (p_selected) { Color accent = get_theme_color(SNAME("accent_color"), SNAME("Editor")); - draw_rect(rect, accent, false); + draw_rect_clipped(rect, accent, false); } } } @@ -1287,11 +1287,11 @@ void AnimationTrackEditTypeAnimation::draw_key(int p_index, float p_pixels_sec, Rect2 rect(Vector2(p_x, int(get_size().height - fh) / 2), Size2(fh, fh)); Color color = get_theme_color(SNAME("font_color"), SNAME("Label")); - draw_rect(rect, color); + draw_rect_clipped(rect, color); if (p_selected) { Color accent = get_theme_color(SNAME("accent_color"), SNAME("Editor")); - draw_rect(rect, accent, false); + draw_rect_clipped(rect, accent, false); } } } |