Merge pull request #58233 from bruvzg/gde_ts

This commit is contained in:
Rémi Verschelde 2022-03-18 14:29:58 +01:00 committed by GitHub
commit 5c8bd6fd71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
49 changed files with 4658 additions and 3126 deletions

View file

@ -392,7 +392,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
stack_dump_info.push_back(d);
s->set_metadata(0, d);
String line = itos(i) + " - " + String(d["file"]) + ":" + itos(d["line"]) + " - at function: " + d["function"];
String line = itos(i) + " - " + String(d["file"]) + ":" + itos(d["line"]) + " - at function: " + String(d["function"]);
s->set_text(0, line);
if (i == 0) {