mirror of https://github.com/godotengine/godot
DAP: Enable showing errors to users, previously they were hardcoded to 'showUser = false', this sets it to 'true'. fixes #112965
This commit is contained in:
parent
7716a4cba0
commit
3f99bef808
|
|
@ -176,7 +176,7 @@ struct Message {
|
|||
int id = 0;
|
||||
String format;
|
||||
bool sendTelemetry = false; // Just in case :)
|
||||
bool showUser = false;
|
||||
bool showUser = true;
|
||||
Dictionary variables;
|
||||
|
||||
_FORCE_INLINE_ Dictionary to_json() const {
|
||||
|
|
|
|||
Loading…
Reference in New Issue