Merge pull request #79404 from raulsntos/dotnet/lines-open-in-external-editor
C#: Fix line in OpenInExternalEditor
This commit is contained in:
commit
2132638937
3 changed files with 6 additions and 5 deletions
|
|
@ -289,7 +289,7 @@ void EditorInterface::edit_node(Node *p_node) {
|
|||
}
|
||||
|
||||
void EditorInterface::edit_script(const Ref<Script> &p_script, int p_line, int p_col, bool p_grab_focus) {
|
||||
ScriptEditor::get_singleton()->edit(p_script, p_line, p_col, p_grab_focus);
|
||||
ScriptEditor::get_singleton()->edit(p_script, p_line - 1, p_col - 1, p_grab_focus);
|
||||
}
|
||||
|
||||
void EditorInterface::open_scene_from_path(const String &scene_path) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue