1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Fix typo 'begining' to 'beginning'

This commit is contained in:
Poommetee Ketson
2017-09-01 22:54:57 +07:00
parent 6e9e25b41d
commit 69ccae3d99
4 changed files with 4 additions and 4 deletions

View File

@@ -1373,7 +1373,7 @@ void EditorNode::_edit_current() {
uint32_t current = editor_history.get_current();
Object *current_obj = current > 0 ? ObjectDB::get_instance(current) : NULL;
property_back->set_disabled(editor_history.is_at_begining());
property_back->set_disabled(editor_history.is_at_beginning());
property_forward->set_disabled(editor_history.is_at_end());
this->current = current_obj;