Disable tooltip on profiler recording button to not affect perf due to tooltip showing

This commit is contained in:
Wojtek Figat
2024-08-17 00:10:53 +02:00
parent ed9aaba055
commit 7650cead3d

View File

@@ -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);