mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Style: Fix statements ending with ';;'
(cherry picked from commit f44ee891be)
This commit is contained in:
parent
75bf6a9978
commit
dbf0137576
98 changed files with 202 additions and 202 deletions
|
|
@ -375,7 +375,7 @@ bool PathEditorPlugin::forward_spatial_input_event(Camera* p_camera,const InputE
|
|||
ur->create_action(TTR("Split Path"));
|
||||
ur->add_do_method(c.ptr(),"add_point",closest_seg_point,Vector3(),Vector3(),closest_seg+1);
|
||||
ur->add_undo_method(c.ptr(),"remove_point",closest_seg+1);
|
||||
ur->commit_action();;
|
||||
ur->commit_action();
|
||||
return true;
|
||||
|
||||
} else {
|
||||
|
|
@ -395,7 +395,7 @@ bool PathEditorPlugin::forward_spatial_input_event(Camera* p_camera,const InputE
|
|||
ur->create_action(TTR("Add Point to Curve"));
|
||||
ur->add_do_method(c.ptr(),"add_point",it.xform(inters),Vector3(),Vector3(),-1);
|
||||
ur->add_undo_method(c.ptr(),"remove_point",c->get_point_count());
|
||||
ur->commit_action();;
|
||||
ur->commit_action();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue