diff --git a/profiler/src/profiler/TracyView_FindZone.cpp b/profiler/src/profiler/TracyView_FindZone.cpp index 153b5d00..3e7a971e 100644 --- a/profiler/src/profiler/TracyView_FindZone.cpp +++ b/profiler/src/profiler/TracyView_FindZone.cpp @@ -265,7 +265,12 @@ void View::DrawFindZone() #else if( !m_worker.AreSourceLocationZonesReady() ) { - ImGui::TextWrapped( "Please wait, computing data..." ); + const auto ty = ImGui::GetTextLineHeight(); + ImGui::PushFont( m_bigFont ); + ImGui::Dummy( ImVec2( 0, ( ImGui::GetContentRegionAvail().y - ImGui::GetTextLineHeight() * 2 - ty ) * 0.5f ) ); + TextCentered( ICON_FA_CROW ); + TextCentered( "Please wait, computing data..." ); + ImGui::PopFont(); DrawWaitingDots( s_time ); ImGui::End(); return;