8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec01950 commit 9e24612Copy full SHA for 9e24612
arcade/__init__.py
@@ -71,11 +71,11 @@ def configure_logging(level: int | None = None):
71
pyglet.options.headless = headless
72
73
74
-from arcade import utils
75
-
+# from arcade import utils
76
# Disable shadow window on macs and in headless mode.
77
-if sys.platform == "darwin" or os.environ.get("ARCADE_HEADLESS") or utils.is_raspberry_pi():
78
- pyglet.options.shadow_window = False
+# if sys.platform == "darwin" or os.environ.get("ARCADE_HEADLESS") or utils.is_raspberry_pi():
+# NOTE: We always disable shadow window now to have consistent behavior across platforms.
+pyglet.options.shadow_window = False
79
80
# Imports from modules that don't do anything circular
81
0 commit comments