diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-22 08:58:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-22 08:58:50 +0100 |
commit | 2ea0d79073849e3ecd27d382588955c4fc886c3d (patch) | |
tree | 953952181ba1b46ccafce646774b69dfb06d759a /editor/plugins/sprite_frames_editor_plugin.cpp | |
parent | 28613ab8c9f48c5d0cb5c1f23df6d1b662872f51 (diff) | |
parent | c41c24562d4c85c71368d9381fc3046e4d6b7a69 (diff) | |
download | redot-engine-2ea0d79073849e3ecd27d382588955c4fc886c3d.tar.gz |
Merge pull request #33810 from akien-mga/codespell
Fix typos with codespell
Diffstat (limited to 'editor/plugins/sprite_frames_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/sprite_frames_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index 394122d91d..34780af59e 100644 --- a/editor/plugins/sprite_frames_editor_plugin.cpp +++ b/editor/plugins/sprite_frames_editor_plugin.cpp @@ -757,7 +757,7 @@ Variant SpriteFramesEditor::get_drag_data_fw(const Point2 &p_point, Control *p_f return Variant(); Dictionary drag_data = EditorNode::get_singleton()->drag_resource(frame, p_from); - drag_data["frame"] = idx; // store the frame, incase we want to reorder frames inside 'drop_data_fw' + drag_data["frame"] = idx; // store the frame, in case we want to reorder frames inside 'drop_data_fw' return drag_data; } |