1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Don't use obsolete ImGui functionality.

This commit is contained in:
Bartosz Taudul
2024-09-18 19:12:47 +02:00
parent 6ff9869120
commit 20905406da
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -952,7 +952,7 @@ static void DrawContents()
{
memcpy( addr, str.c_str(), str.size() + 1 );
}
if( ImGui::IsItemHovered() && ImGui::IsKeyPressed( ImGui::GetKeyIndex( ImGuiKey_Delete ), false ) )
if( ImGui::IsItemHovered() && ImGui::IsKeyPressed( ImGuiKey_Delete, false ) )
{
idxRemove = (int)i;
}