diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-11-21 22:10:27 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-11-21 22:10:58 -0300 |
commit | a2a606794c7d29452a59eee1eab07213827654a0 (patch) | |
tree | 2008a901b6e52756dc91dbf2d4b62a39df7480a3 /core | |
parent | 9e628264b68205f8d003223a5abff574389354ee (diff) |
Ensure array and dict editors show edited object IDs, fixes #20225
Diffstat (limited to 'core')
-rw-r--r-- | core/script_debugger_remote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_debugger_remote.cpp b/core/script_debugger_remote.cpp index 621a94ab1a..a03ddd0983 100644 --- a/core/script_debugger_remote.cpp +++ b/core/script_debugger_remote.cpp @@ -108,7 +108,7 @@ void ScriptDebuggerRemote::_put_variable(const String &p_name, const Variant &p_ } int len = 0; - Error err = encode_variant(var, NULL, len); + Error err = encode_variant(var, NULL, len, true); if (err != OK) ERR_PRINT("Failed to encode variant"); |