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>2021-12-01 19:41:00 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-12-01 19:41:00 +0300
commitce7faf99c9fd3c310b0550f4fc55bcfa2f0c4ec6 (patch)
tree94c39313ed2f673cb8c7b1d1c5629503e24e0d72
parentb4987f5fc4d187eb249f20d5d42544d429f83af1 (diff)
Show tooltip on disabled item.
-rw-r--r--profiler/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp
index b8bf8939..6ca614f4 100644
--- a/profiler/src/main.cpp
+++ b/profiler/src/main.cpp
@@ -881,7 +881,7 @@ static void DrawContents()
ImGui::PushID( idx++ );
const bool selected = ImGui::Selectable( name->second.c_str(), &sel, flags );
ImGui::PopID();
- if( ImGui::IsItemHovered() )
+ if( ImGui::IsItemHovered( ImGuiHoveredFlags_AllowWhenDisabled ) )
{
char portstr[32];
sprintf( portstr, "%" PRIu16, v.second.port );