diff --git a/ui/gizmos.js b/ui/gizmos.js index d1fb4a7..3a7f528 100644 --- a/ui/gizmos.js +++ b/ui/gizmos.js @@ -24,7 +24,7 @@ document.addEventListener("DOMContentLoaded", function () { window.addEventListener("keydown", (event) => { // Check if both Ctrl and the comma key (,) are pressed - if (event.ctrlKey && event.code === "Comma") { + if ((event.ctrlKey && event.code === "Comma") || (event.code === "KeyF")) { focusCameraOnMesh(); } });