You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Fix various typos with codespell
Also includes typo fixes from #79993, #80068, #80276, and #80303. Co-authored-by: betalars <contact@betalars.de> Co-authored-by: spaceyjase <429978+spaceyjase@users.noreply.github.com> Co-authored-by: Swarkin <102416174+Swarkin@users.noreply.github.com> Co-authored-by: Raul Santos <raulsntos@gmail.com>
This commit is contained in:
@@ -1289,7 +1289,7 @@ void CanvasItemEditor::_pan_callback(Vector2 p_scroll_vec, Ref<InputEvent> p_eve
|
||||
void CanvasItemEditor::_zoom_callback(float p_zoom_factor, Vector2 p_origin, Ref<InputEvent> p_event) {
|
||||
Ref<InputEventMouseButton> mb = p_event;
|
||||
if (mb.is_valid()) {
|
||||
// Special behvior for scroll events, as the zoom_by_increment method can smartly end up on powers of two.
|
||||
// Special behavior for scroll events, as the zoom_by_increment method can smartly end up on powers of two.
|
||||
int increment = p_zoom_factor > 1.0 ? 1 : -1;
|
||||
bool by_integer = mb->is_alt_pressed();
|
||||
|
||||
@@ -5079,7 +5079,7 @@ CanvasItemEditor::CanvasItemEditor() {
|
||||
|
||||
viewport->add_child(controls_vb);
|
||||
|
||||
// Add some margin to the left for better aesthetics.
|
||||
// Add some margin to the left for better esthetics.
|
||||
// This prevents the first button's hover/pressed effect from "touching" the panel's border,
|
||||
// which looks ugly.
|
||||
Control *margin_left = memnew(Control);
|
||||
|
||||
Reference in New Issue
Block a user