Skip to content

Commit

Permalink
#2467 disable opengl on MacOS until it is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 17, 2023
1 parent cb01180 commit 9593a19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ def pretty_cmd(cmd):
'printing' : bstr(printing_ENABLED),
'dbus_control' : bstr(dbus_ENABLED),
'mmap' : bstr(True),
'opengl' : "probe",
'opengl' : "no" if OSX else "probe",
'headerbar' : ["auto", "no"][OSX or WIN32],
}
def convert_templates(subdirs):
Expand Down
2 changes: 1 addition & 1 deletion xpra/scripts/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def get_defaults() -> dict[str, Any]:
"av-sync" : True,
"exit-ssh" : True,
"dbus-control" : not WIN32 and not OSX,
"opengl" : "probe",
"opengl" : "no" if OSX else "probe",
"mdns" : not WIN32,
"swap-keys" : OSX, # only used on osx
"desktop-fullscreen": False,
Expand Down

0 comments on commit 9593a19

Please sign in to comment.