We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a3f070 commit 551c3d0Copy full SHA for 551c3d0
Source/PythonEditor/Private/SPythonEditor.cpp
@@ -144,7 +144,7 @@ FText SPythonEditor::GetLineAndColumn() const
144
int32 Column;
145
PythonEditableText->GetLineAndColumn(Line, Column);
146
147
- FString LineAndColumn = FString::Printf(TEXT("Line: %d Column: %d"), Line, Column);
+ FString LineAndColumn = FString::Printf(TEXT("Line: %d Column: %d"), Line + 1, Column);
148
149
return FText::FromString(LineAndColumn);
150
}
0 commit comments