Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions main/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,11 @@ function initializeApp() {
break;
}

case "m": {
// Ctrl+M - Move focus to main menu button
e.preventDefault();
menuButton.focus();
break;
case "m": {
// Ctrl+M - Move focus to main menu button
e.preventDefault();
menuButton.focus();
break;
}

case "g": {
Expand Down Expand Up @@ -397,6 +397,7 @@ window.onload = async function () {
initializeBlockHandling();

console.log("Welcome to Flock XR 🐦🐦🐦");
console.log("Release 1");

// Autosave every 30 seconds: to localStorage and (if a file was saved) to that file
setInterval(() => {
Expand Down
Loading