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

Use ImGui keycodes.

This commit is contained in:
Bartosz Taudul
2022-04-27 01:16:46 +02:00
parent 0d547bf4db
commit 1b7e8c3520
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -772,7 +772,7 @@ bool View::DrawImpl()
assert( m_shortcut == ShortcutAction::None );
if( io.KeyCtrl )
{
if( ImGui::IsKeyPressed( 'F' ) )
if( ImGui::IsKeyPressed( ImGuiKey_F ) )
{
m_findZone.show = true;
m_shortcut = ShortcutAction::OpenFind;