From 883264c0dfbe3c40aa487360626771655bc60335 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 18 May 2020 18:25:49 +0200 Subject: [PATCH] Fix typo. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 5209f6d7..2e6d77e8 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3285,7 +3285,7 @@ void View::DrawContextSwitches( const ContextSwitch* ctx, bool hover, double pxn if( hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( px0, offset ), wpos + ImVec2( minpx, offset + ty ) ) ) { ImGui::BeginTooltip(); - TextFocused( "Thread is", "chaning activity multiple times" ); + TextFocused( "Thread is", "changing activity multiple times" ); TextFocused( "Number of running regions:", RealToString( num ) ); TextFocused( "Time:", TimeToString( rend - ev.Start() ) ); ImGui::EndTooltip();