Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-13 21:42:32 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-13 21:42:32 +0300
commitb66c3a0e3079d0de1ff9988ecdcf1650710945ba (patch)
tree3421229d3776b4e27f0df3c471e7520113421181
parent8dec765f5f7150a33a6a54ad2af62c80a3c0251f (diff)
Request attention when save finishes.
-rw-r--r--server/TracyView.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/TracyView.cpp b/server/TracyView.cpp
index 3ba01c3b..a35bf736 100644
--- a/server/TracyView.cpp
+++ b/server/TracyView.cpp
@@ -627,6 +627,7 @@ bool View::DrawImpl()
char buf[1024];
sprintf( buf, "Trace size %s (%.2f%% ratio)", MemSizeToString( dst ), 100.f * dst / src );
m_notificationText = buf;
+ m_acb();
}
const auto& io = ImGui::GetIO();