Reputation: 63
I was working on the visual studio application. And suddenly, my window control buttons hopped to the left side of the main menu navbar, hiding the buttons File & Edit.
Does anyone know how to re-placing the windows control buttons back to the right side of the navbar?
Upvotes: 6
Views: 1752
Reputation: 180621
In vscode v1.71.2 the window.experimental.windowControlsOverlay.enabled
setting has been disabled by default.
This bug was released in vscode v1.71. It may be related to using RTL languages. I would assume this will be fixed in a point release.
Try disabling this setting:
window.experimental.windowControlsOverlay.enabled
from [windows default close button location moved on its own when updating to v1.71.0][1]
Upvotes: 4