diff --git a/profiler/src/profiler/TracyView_Samples.cpp b/profiler/src/profiler/TracyView_Samples.cpp index f487d8a7..be666f6f 100644 --- a/profiler/src/profiler/TracyView_Samples.cpp +++ b/profiler/src/profiler/TracyView_Samples.cpp @@ -109,7 +109,11 @@ void View::DrawSamplesStatistics( Vector& data, int64_t timeRange, Accu if( data.empty() ) { - ImGui::TextUnformatted( "No entries to be displayed." ); + ImGui::PushFont( m_bigFont ); + ImGui::Dummy( ImVec2( 0, ( ImGui::GetContentRegionAvail().y - ImGui::GetTextLineHeight() * 2 ) * 0.5f ) ); + TextCentered( ICON_FA_HIPPO ); + TextCentered( "No entries to be displayed" ); + ImGui::PopFont(); } else {