diff --git a/Rendering/cfillion_Apply render preset.lua b/Rendering/cfillion_Apply render preset.lua index 8db2d2f98..f99added8 100644 --- a/Rendering/cfillion_Apply render preset.lua +++ b/Rendering/cfillion_Apply render preset.lua @@ -729,7 +729,10 @@ local function postprocessCell(ctx, preset) ImGui.EndTooltip(ctx) end - boolText(ctx, (postprocess & (NORMALIZE_ENABLE | BRICKWALL_ENABLE)) ~= 0) + + local enable_mask = + NORMALIZE_ENABLE | BRICKWALL_ENABLE | FADEIN_ENABLE | FADEOUT_ENABLE + boolText(ctx, (postprocess & enable_mask) ~= 0) end local function sourceCell(ctx, preset)