diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-08-15 16:01:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-15 16:01:49 +0200 |
commit | 966559c3bdcdc7eeb0cd04098520250580ea3a04 (patch) | |
tree | a7e0955cfd4e62183c1db66a1ef2bf67227277e6 /editor/editor_plugin.cpp | |
parent | 57e16812a1a4b89058de29e81247351afdd09087 (diff) | |
parent | a0205e4f344eece7d681df9911ff9ddc371aaefc (diff) |
Merge pull request #51512 from Bhu1-V/PR/cmd-fix
command palette improvements
Diffstat (limited to 'editor/editor_plugin.cpp')
-rw-r--r-- | editor/editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_plugin.cpp b/editor/editor_plugin.cpp index b71a3944fc..98b5ec7d56 100644 --- a/editor/editor_plugin.cpp +++ b/editor/editor_plugin.cpp @@ -311,7 +311,7 @@ bool EditorInterface::is_distraction_free_mode_enabled() const { } EditorCommandPalette *EditorInterface::get_command_palette() const { - return EditorNode::get_singleton()->get_editor_command_palette(); + return EditorCommandPalette::get_singleton(); } EditorInterface *EditorInterface::singleton = nullptr; |