1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix various typos with codespell

Using 2.2.7.dev5+g2af65969.
This commit is contained in:
Rémi Verschelde
2023-10-06 12:52:10 +02:00
parent 9e455f424a
commit 373c4b22d3
6 changed files with 10 additions and 10 deletions

View File

@@ -531,7 +531,7 @@ void GradientEdit::_redraw() {
draw_texture(get_theme_icon(SNAME("overbright_indicator"), SNAME("ColorPicker")), Point2(button_offset, 0));
}
} else {
// If no color is selected, draw grey color with 'X' on top.
// If no color is selected, draw gray color with 'X' on top.
draw_rect(Rect2(button_offset, 0, h, h), Color(0.5, 0.5, 0.5, 1));
draw_line(Vector2(button_offset, 0), Vector2(button_offset + h, h), Color(0.8, 0.8, 0.8));
draw_line(Vector2(button_offset, h), Vector2(button_offset + h, 0), Color(0.8, 0.8, 0.8));