From 7650cead3dcf42b77f97352491e7e3c782b87454 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sat, 17 Aug 2024 00:10:53 +0200 Subject: [PATCH] Disable tooltip on profiler recording button to not affect perf due to tooltip showing --- Source/Editor/Windows/Profiler/ProfilerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Windows/Profiler/ProfilerWindow.cs b/Source/Editor/Windows/Profiler/ProfilerWindow.cs index f746e2a6e..0b4ac39b4 100644 --- a/Source/Editor/Windows/Profiler/ProfilerWindow.cs +++ b/Source/Editor/Windows/Profiler/ProfilerWindow.cs @@ -92,7 +92,7 @@ namespace FlaxEditor.Windows.Profiler Parent = this, }; _liveRecordingButton = toolstrip.AddButton(editor.Icons.Play64); - _liveRecordingButton.LinkTooltip("Live profiling events recording"); + //_liveRecordingButton.LinkTooltip("Live profiling events recording"); _liveRecordingButton.AutoCheck = true; _liveRecordingButton.Clicked += OnLiveRecordingChanged; _clearButton = toolstrip.AddButton(editor.Icons.Rotate32, Clear);