mirror of
https://github.com/labwc/labwc.git
synced 2026-03-07 04:33:54 -05:00
src/config/session.c: set _JAVA_AWT_WM_NONREPARENTING=1
This commit is contained in:
parent
a1324c8cdc
commit
30502af0e5
1 changed files with 9 additions and 0 deletions
|
|
@ -107,6 +107,15 @@ session_environment_init(const char *dir)
|
||||||
*/
|
*/
|
||||||
setenv("XDG_CURRENT_DESKTOP", "wlroots", 0);
|
setenv("XDG_CURRENT_DESKTOP", "wlroots", 0);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Set default for _JAVA_AWT_WM_NONREPARENTING so that Java applications
|
||||||
|
* such as JetBrains/Intellij Idea do render blank windows and menus
|
||||||
|
* with incorrect offset. See https://github.com/swaywm/sway/issues/595
|
||||||
|
* May be overriden either by already having a value set or by the user
|
||||||
|
* supplied environment file.
|
||||||
|
*/
|
||||||
|
setenv("_JAVA_AWT_WM_NONREPARENTING", "1", 0);
|
||||||
|
|
||||||
char *environment = build_path(dir, "environment");
|
char *environment = build_path(dir, "environment");
|
||||||
if (!environment) {
|
if (!environment) {
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue