summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-01-28 21:51:39 +0100
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-01-29 09:59:18 +0100
commit15369fdb1d692e1515dd888dfbae275074be63be (patch)
tree46c06709329d06989d343b47cb3f2e5dae1400eb /editor/editor_node.cpp
parent17e7f85c06366b427e5068c5b3e2940e27ff5f1d (diff)
downloadredot-engine-15369fdb1d692e1515dd888dfbae275074be63be.tar.gz
Remove unnecessary `this->` expressions
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 24bfba3844..a23c0f7c06 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -2331,7 +2331,7 @@ void EditorNode::_edit_current(bool p_skip_foreign) {
}
bool inspector_only = editor_history.is_current_inspector_only();
- this->current = current_obj;
+ current = current_obj;
if (!current_obj) {
SceneTreeDock::get_singleton()->set_selected(nullptr);