Visual Studio Code Probleme unter Ubuntu 24.04 LTS
Für die Entwicklung verwende ich inzwischen hauptsächlich Visual Studio Code, sowohl für Mikrocontroller/C/C++ Projekte als auch für andere Aufgaben.
In Ubuntu 24.04 LTS gibt es bei mir das Problem dass Dialoge, Popups und andere Buttons nicht anklickbar waren.
Teilweise wurden die Eingaben an das dahinter liegende Fenster weitergeleitet.
Abhilfe konnte ich durch ändern der Aufrufparameter für vscode schaffen. Gefunden hier https://github.com/microsoft/vscode/issues/212430#issuecomment-2109960783
Editieren der /usr/share/applications/code.desktop
[Desktop Entry]
# Replace "Exec=/usr/share/code/code %F" with:
Exec=/usr/share/code/code --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform-hint=auto %F
[Desktop Action new-empty-window]
# Replace "Exec=/usr/share/code/code --new-window %F" with:
Exec=/usr/share/code/code --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform-hint=auto --new-window %F