From cd63afacfe6ef8cedc4de1a3ae013216f43b620d Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 26 Jan 2025 20:53:47 -0600 Subject: [PATCH] [studio] Remove Ctrl-0 tab shortcut --- src/olympic/studio/applib/src/studioapp.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/olympic/studio/applib/src/studioapp.cpp b/src/olympic/studio/applib/src/studioapp.cpp index 64c6ba89..3b45c2d1 100644 --- a/src/olympic/studio/applib/src/studioapp.cpp +++ b/src/olympic/studio/applib/src/studioapp.cpp @@ -349,10 +349,6 @@ void StudioUI::handleKeyInput() noexcept { m_activeEditorUpdatePending = m_activeEditor; } } - if (ImGui::IsKeyPressed(ImGuiKey_0)) { - m_activeEditor = m_editors[10 < m_editors.size() ? 10 : range].get(); - m_activeEditorUpdatePending = m_activeEditor; - } } } }