You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Add missing SNAME macro optimization for StringName in some functions
This commit is contained in:
@@ -495,10 +495,10 @@ void AnimationBezierTrackEdit::_notification(int p_what) {
|
||||
}
|
||||
draw_rect(
|
||||
Rect2(bs_from, bs_to - bs_from),
|
||||
get_theme_color("box_selection_fill_color", "Editor"));
|
||||
get_theme_color(SNAME("box_selection_fill_color"), SNAME("Editor")));
|
||||
draw_rect(
|
||||
Rect2(bs_from, bs_to - bs_from),
|
||||
get_theme_color("box_selection_stroke_color", "Editor"),
|
||||
get_theme_color(SNAME("box_selection_stroke_color"), SNAME("Editor")),
|
||||
false,
|
||||
Math::round(EDSCALE));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user