Skip to content

Commit

Permalink
#3514 env vars must be strings
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 20, 2022
1 parent 18720c1 commit f366427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/scripts/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def main(script_file, cmdline):
os.environ["GDK_SCALE"]="1"
os.environ["GDK_DPI_SCALE"] = "1"
if WIN32 and os.environ.get("GDK_WIN32_DISABLE_HIDPI") is None:
os.environ["GDK_WIN32_DISABLE_HIDPI"] = 1
os.environ["GDK_WIN32_DISABLE_HIDPI"] = "1"
#client side decorations break window geometry,
#disable this "feature" unless explicitly enabled:
if os.environ.get("GTK_CSD") is None:
Expand Down

0 comments on commit f366427

Please sign in to comment.