From: subhransu mohanty Date: Thu, 1 Nov 2018 01:58:37 +0000 (+0900) Subject: lottie: Use the new addroundrect api to get uniform corner as expected from AE. X-Git-Tag: submit/tizen/20181129.071502~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F23%2F192223%2F1;p=platform%2Fcore%2Fuifw%2Flottie-player.git lottie: Use the new addroundrect api to get uniform corner as expected from AE. Change-Id: Ifcc1486a530d6ddd195bf45a4ea7bf4a4c8ddaa7 --- diff --git a/src/lottie/lottieitem.cpp b/src/lottie/lottieitem.cpp index 0df4247..0249bec 100644 --- a/src/lottie/lottieitem.cpp +++ b/src/lottie/lottieitem.cpp @@ -692,7 +692,7 @@ void LOTRectItem::updatePath(VPath& path, int frameNo) size.y()); path.reset(); - path.addRoundRect(r, roundness, roundness, mData->direction()); + path.addRoundRect(r, roundness, mData->direction()); updateCache(frameNo, pos, size, roundness); }