mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-29 16:54:35 +00:00
Improve "no data" screens in statistics window.
This commit is contained in:
parent
a34b058701
commit
d734aaa357
@ -46,7 +46,12 @@ void View::DrawStatistics()
|
|||||||
#else
|
#else
|
||||||
if( !m_worker.AreSourceLocationZonesReady() && ( !m_worker.AreCallstackSamplesReady() || m_worker.GetCallstackSampleCount() == 0 ) )
|
if( !m_worker.AreSourceLocationZonesReady() && ( !m_worker.AreCallstackSamplesReady() || m_worker.GetCallstackSampleCount() == 0 ) )
|
||||||
{
|
{
|
||||||
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_HIPPO );
|
||||||
|
TextCentered( "Please wait, computing data..." );
|
||||||
|
ImGui::PopFont();
|
||||||
DrawWaitingDots( s_time );
|
DrawWaitingDots( s_time );
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
return;
|
return;
|
||||||
@ -589,7 +594,11 @@ void View::DrawStatistics()
|
|||||||
{
|
{
|
||||||
if( srcloc.empty() )
|
if( srcloc.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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user