diff options
| author | Rémi Verschelde | 2017-09-01 21:29:40 +0200 |
|---|---|---|
| committer | GitHub | 2017-09-01 21:29:40 +0200 |
| commit | 5a69a663c727a48d38d1ccc66b18318c21b692f3 (patch) | |
| tree | 257ca89ff2af376d375ba6cabe0b97e757734803 /editor/editor_node.cpp | |
| parent | 39621bf6816295ef7b0243ea784f3fdf96257a98 (diff) | |
| parent | 69ccae3d99df8bc6583fa96ae6d9ac57d0e8bf3b (diff) | |
| download | godot-5a69a663c727a48d38d1ccc66b18318c21b692f3.tar.gz godot-5a69a663c727a48d38d1ccc66b18318c21b692f3.tar.zst godot-5a69a663c727a48d38d1ccc66b18318c21b692f3.zip | |
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 8575cd164..e39895e4d 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; |
