From a42120fb6b5197ec112504f50f8d07e8742bb38c Mon Sep 17 00:00:00 2001 From: "minho.sun" Date: Tue, 10 Jul 2018 10:54:19 +0900 Subject: [PATCH] [4.0] Fixed gif-loading GetImageSize() bug GifLoading::GetImageSize() returned wrong height. Make it return right height. Change-Id: Ie6851bc47a08efbb5c07b422629904c6e573566f Signed-off-by: minho.sun --- adaptors/devel-api/adaptor-framework/gif-loading.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adaptors/devel-api/adaptor-framework/gif-loading.cpp b/adaptors/devel-api/adaptor-framework/gif-loading.cpp index 8f75463..88ca5ad 100755 --- a/adaptors/devel-api/adaptor-framework/gif-loading.cpp +++ b/adaptors/devel-api/adaptor-framework/gif-loading.cpp @@ -1260,7 +1260,7 @@ bool GifLoading::LoadAllFrames( std::vector &pixelData, Dali::V ImageDimensions GifLoading::GetImageSize() { - return ImageDimensions( mImpl->imageProperties.w, mImpl->imageProperties.w ); + return ImageDimensions( mImpl->imageProperties.w, mImpl->imageProperties.h ); } int GifLoading::GetImageCount() -- 2.7.4