[Editor] Log viewer shows stacktrace by default (#1844)

This commit is contained in:
Eideren 2023-09-26 12:42:12 +02:00 коммит произвёл GitHub
Родитель 9101754650
Коммит 437b701834
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -148,7 +148,7 @@ namespace Stride.Core.Presentation.Controls
/// <summary>
/// Identifies the <see cref="ShowStacktrace"/> dependency property.
/// </summary>
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));
/// <summary>
/// Initializes a new instance of the <see cref="TextLogViewer"/> class.