diff --git a/profiler/src/profiler/TracyView_Compare.cpp b/profiler/src/profiler/TracyView_Compare.cpp index cf8151bc..072f98ce 100644 --- a/profiler/src/profiler/TracyView_Compare.cpp +++ b/profiler/src/profiler/TracyView_Compare.cpp @@ -280,7 +280,12 @@ void View::DrawCompare() if( !m_worker.AreSourceLocationZonesReady() || !m_compare.second->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_FROG ); + TextCentered( "Please wait, computing data..." ); + ImGui::PopFont(); DrawWaitingDots( s_time ); ImGui::End(); return;