We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad9532 commit 0a81a2aCopy full SHA for 0a81a2a
package/Editor/NeedleConsole.cs
@@ -123,11 +123,10 @@ public static void Apply(ref string stacktrace)
123
if (foundPrefix && settings.UseSyntaxHighlighting)
124
SyntaxHighlighting.AddSyntaxHighlighting(ref line);
125
126
- // Indent wrapped lines.
127
-#if UNITY_6000_0_OR_NEWER
128
- var l = "<indent=2em><line-indent=-2em>" + line.Trim() + "</line-indent></indent>";
129
-#else
130
var l = line.Trim();
+#if UNITY_6000_0_OR_NEWER
+ // Indent wrapped lines.
+ l = "<indent=0.75em><line-indent=-0.75em>" + l + "</line-indent></indent>";
131
#endif
132
if (!string.IsNullOrEmpty(l))
133
{
0 commit comments