mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
C#: Fix line position when opening file in VSCode
This commit is contained in:
parent
9ad8dfa6cc
commit
756a48023f
@ -279,7 +279,7 @@ namespace GodotTools
|
||||
if (line >= 0)
|
||||
{
|
||||
args.Add("-g");
|
||||
args.Add($"{scriptPath}:{line}:{col}");
|
||||
args.Add($"{scriptPath}:{line + 1}:{col + 1}");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user