From 792cd0d5f59947fa146d605f46de0ac2eee3adef Mon Sep 17 00:00:00 2001 From: subhransu mohanty Date: Fri, 27 Jul 2018 12:48:53 +0900 Subject: [PATCH] lttie/example: fixed layouting issue. Change-Id: Id6ac76f9e4161321252e32a7a4484f69d130c04f --- example/lottieviewtest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/lottieviewtest.cpp b/example/lottieviewtest.cpp index 180201d..342d4d2 100644 --- a/example/lottieviewtest.cpp +++ b/example/lottieviewtest.cpp @@ -31,7 +31,7 @@ public: int count = numberOfImage; int colums = (int) ceil(sqrt(count)); int offset = 3; - int vw = (mApp->width() - (2 * offset * colums))/colums; + int vw = (mApp->width() - (offset * colums))/colums; int vh = vw; int posx = offset; int posy = offset; -- 2.34.1