flame in line comments

This commit is contained in:
Jakub Jezek 2023-03-28 23:25:33 +02:00
parent 6f1f4046d3
commit f58bcc8abb
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -47,7 +47,10 @@ class FlamePrelaunch(PreLaunchHook):
imageio_flame = project_settings["flame"]["imageio"]
# get host imageio settings enabled key if exists
colormanaged = imageio_flame.get("enabled")
# if key was not found, set to True
# ensuring backward compatibility
if colormanaged is None:
colormanaged = True