From ddbc7d5ac2e8edf48a48197deb748f229ca03444 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 17 Aug 2018 23:29:32 +0200 Subject: [PATCH] Add hourglass icon to loading pop-up. --- profiler/src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 7780a09b..6a65f2e6 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -240,6 +240,7 @@ int main( int argc, char** argv ) } if( ImGui::BeginPopupModal( "Loading trace...", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) ) { + tracy::TextCentered( ICON_FA_HOURGLASS_HALF ); auto currProgress = progress.progress.load( std::memory_order_relaxed ); if( totalProgress == 0 ) {