lttie/example: fixed layouting issue.

Change-Id: Id6ac76f9e4161321252e32a7a4484f69d130c04f
This commit is contained in:
subhransu mohanty 2018-07-27 12:48:53 +09:00
parent 1c62266e43
commit 792cd0d5f5

View File

@ -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;