How to disable alt key to focus on File tab in VS code?

Viewed 704

In my linux version of VS Code, when I press the Alt key it focuses on the File tab of the menu bar. Not sure how I made it this way. It wasn't this way before.

How do I disable this?

2 Answers

In settings.json

"window.titleBarStyle": "custom",
"window.customMenuBarAltFocus": false
Related