Skip to content

Commit

Permalink
tidier?
Browse files Browse the repository at this point in the history
  • Loading branch information
elParaguayo committed Dec 17, 2023
1 parent 7944a23 commit 7d1d6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
def wants_wayland(config_settings):
if config_settings:
for key in ["Backend", "backend"]:
if config_settings.get(key, "") in ("Wayland", "wayland"):
if config_settings.get(key, "").lower() == "wayland":
return True

return False
Expand Down

0 comments on commit 7d1d6fa

Please sign in to comment.