Skip to content

Commit

Permalink
disable transparency early via env var
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 13, 2022
1 parent 552d78c commit 268a556
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/client/gtk_base/gtk_client_base.py
Expand Up @@ -910,6 +910,8 @@ def make_hello(self) -> dict:


def has_transparency(self) -> bool:
if not envbool("XPRA_ALPHA", True):
return False
screen = Gdk.Screen.get_default()
if screen is None:
return is_Wayland()
Expand Down

0 comments on commit 268a556

Please sign in to comment.