Skip to content

Commit cc4bf2a

Browse files
authored
Update render.py (#244)
PURPOSE RIF macOS has an issue with upscaling filter. EFFECT OF CHANGE Disable viewport upscaling on macos
1 parent 184202f commit cc4bf2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rprblender/properties/render.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ class RPR_UserSettings(bpy.types.PropertyGroup):
242242
description="Denoise rendered image with Machine Learning denoiser.\n"
243243
"Rendering at 2 times lower resoluting then upscaling rendered image "
244244
"in the end of render",
245-
default=True,
245+
default=True if not utils.IS_MAC else False, # TODO remove when macos upscaler fixed
246246
)
247247

248248

0 commit comments

Comments
 (0)