From 0e4f735561b28111f7adb89f67fca586fb8d52e6 Mon Sep 17 00:00:00 2001 From: Hamster Date: Thu, 3 Oct 2024 10:36:43 +0800 Subject: [PATCH] Fix type conflict in release build. --- ULogViewer/Controls/LogProfileEditorDialog.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ULogViewer/Controls/LogProfileEditorDialog.axaml.cs b/ULogViewer/Controls/LogProfileEditorDialog.axaml.cs index 0e2276cf..49dd94e3 100644 --- a/ULogViewer/Controls/LogProfileEditorDialog.axaml.cs +++ b/ULogViewer/Controls/LogProfileEditorDialog.axaml.cs @@ -997,7 +997,7 @@ public async void ImportEmbeddedScriptLogDataSourceProviderFromFile() /// /// Get all log levels. /// - public LogLevel[] LogLevels { get; } = Enum.GetValues(); + public Logs.LogLevel[] LogLevels { get; } = Enum.GetValues(); ///