From 437b701834aa04f12582548a38719fe0c1d7b19c Mon Sep 17 00:00:00 2001 From: Eideren Date: Tue, 26 Sep 2023 12:42:12 +0200 Subject: [PATCH] [Editor] Log viewer shows stacktrace by default (#1844) --- .../Stride.Core.Presentation/Controls/TextLogViewer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/presentation/Stride.Core.Presentation/Controls/TextLogViewer.cs b/sources/presentation/Stride.Core.Presentation/Controls/TextLogViewer.cs index 4a46e7c83..d6e1809b7 100644 --- a/sources/presentation/Stride.Core.Presentation/Controls/TextLogViewer.cs +++ b/sources/presentation/Stride.Core.Presentation/Controls/TextLogViewer.cs @@ -148,7 +148,7 @@ namespace Stride.Core.Presentation.Controls /// /// Identifies the dependency property. /// - public static readonly DependencyProperty ShowStacktraceProperty = DependencyProperty.Register("ShowStacktrace", typeof(bool), typeof(TextLogViewer), new PropertyMetadata(BooleanBoxes.FalseBox, TextPropertyChanged)); + public static readonly DependencyProperty ShowStacktraceProperty = DependencyProperty.Register("ShowStacktrace", typeof(bool), typeof(TextLogViewer), new PropertyMetadata(BooleanBoxes.TrueBox, TextPropertyChanged)); /// /// Initializes a new instance of the class.