From 6884df02fd8cb85ae1ade13691409a9a54875cea Mon Sep 17 00:00:00 2001 From: xxSeys1 Date: Thu, 10 Apr 2025 21:34:00 +0200 Subject: [PATCH] remove trailing . on message --- Source/Editor/Windows/DebugLogWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Windows/DebugLogWindow.cs b/Source/Editor/Windows/DebugLogWindow.cs index a21ad14b8..c64025491 100644 --- a/Source/Editor/Windows/DebugLogWindow.cs +++ b/Source/Editor/Windows/DebugLogWindow.cs @@ -488,7 +488,7 @@ namespace FlaxEditor.Windows // Pause on Error (we should do it as fast as possible) if (newEntry.Group == LogGroup.Error && _pauseOnErrorButton.Checked && Editor.StateMachine.CurrentState == Editor.StateMachine.PlayingState) { - Debug.Write(LogType.Info, "Pause Play mode on error (toggle this behaviour in the Debug Log panel)."); + Debug.Write(LogType.Info, "Pause Play mode on error (toggle this behaviour in the Debug Log panel)"); Editor.Simulation.RequestPausePlay(); } }