From c8621d13d1c475a7f12baec13b2bdf7eb312b7b7 Mon Sep 17 00:00:00 2001 From: shun-iwasawa Date: Mon, 21 Mar 2022 03:04:12 +0900 Subject: [PATCH] fix rgb key --- toonz/sources/stdfx/rgbkeyfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toonz/sources/stdfx/rgbkeyfx.cpp b/toonz/sources/stdfx/rgbkeyfx.cpp index 80ce8a9a..28b5f468 100644 --- a/toonz/sources/stdfx/rgbkeyfx.cpp +++ b/toonz/sources/stdfx/rgbkeyfx.cpp @@ -51,7 +51,7 @@ public: void doCompute(TTile &tile, double frame, const TRenderSettings &) override; bool canHandle(const TRenderSettings &info, double frame) override { - return true; + return false; } };