summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
authorPoommetee Ketson <poommetee@protonmail.com>2017-09-01 22:54:57 +0700
committerPoommetee Ketson <poommetee@protonmail.com>2017-09-01 22:54:57 +0700
commit69ccae3d99df8bc6583fa96ae6d9ac57d0e8bf3b (patch)
treefbd8d559b49561abf06f27b7a482c2b300c06d0e /editor/editor_node.cpp
parent6e9e25b41d33745f65910fa077c9049ddccb3445 (diff)
downloadredot-engine-69ccae3d99df8bc6583fa96ae6d9ac57d0e8bf3b.tar.gz
Fix typo 'begining' to 'beginning'
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r--editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 8575cd164f..e39895e4d8 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -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;