Skip to content

Commit

Permalink
GH-687 Fix usage of script vs p_script
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Aug 9, 2024
1 parent 377fcc1 commit bb506be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editor/editor_panel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ void OrchestratorEditorPanel::_goto_script_line(const Ref<Script>& p_script, int

for (const OrchestrationFile& file : _files_context.open_files)
{
if (file.file_name == p_script->get_path())
if (file.file_name == script->get_path())
{
// Make plugin active
OrchestratorPlugin::get_singleton()->make_active();
Expand Down

0 comments on commit bb506be

Please sign in to comment.