Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit f797a46

Browse files
committed
Fix regression bug on evaluation in debug console and watch window.
1 parent 46d1270 commit f797a46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MonoDebug

UnityDebug/UnityDebugSession.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ public override void Evaluate(Response response, dynamic args)
694694
var evaluationOptions = m_DebuggerSessionOptions.EvaluationOptions.Clone();
695695
evaluationOptions.EllipsizeStrings = false;
696696
evaluationOptions.AllowMethodEvaluation = true;
697-
var val = Frame.GetExpressionValue(expression, true);
697+
var val = Frame.GetExpressionValue(expression, evaluationOptions);
698698
val.WaitHandle.WaitOne();
699699

700700
var flags = val.Flags;

0 commit comments

Comments
 (0)