From 8732f852ab8d9db2917560c1d0e9fb6dba18fe8e Mon Sep 17 00:00:00 2001 From: DongJinJeon Date: Thu, 11 Apr 2013 13:08:35 +0900 Subject: [PATCH] Bug Fixed N_SE-32331 Change-Id: Ibb58cd77c237b18c83f3262f799ee390f83b9c48 Signed-off-by: DongJinJeon --- src/ui/controls/FUiCtrl_ProgressPopupPresenter.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ui/controls/FUiCtrl_ProgressPopupPresenter.cpp b/src/ui/controls/FUiCtrl_ProgressPopupPresenter.cpp index 2d84b8a..a37ca71 100755 --- a/src/ui/controls/FUiCtrl_ProgressPopupPresenter.cpp +++ b/src/ui/controls/FUiCtrl_ProgressPopupPresenter.cpp @@ -650,7 +650,10 @@ _ProgressPopupPresenter::OnChangeLayout(_ControlOrientation orientation) if (__pProgressPopup->HasTitle() || __pProgressPopup->HasText() || __pProgressPopup->HasButton()) { - __pAnimation->SetBounds(FloatRectangle(animationBounds.x, animationBounds.y, animationBounds.width, animationBounds.height)); + if (__pAnimation != null) + { + __pAnimation->SetBounds(FloatRectangle(animationBounds.x, animationBounds.y, animationBounds.width, animationBounds.height)); + } } if (__pProgressPopup->HasTitle()) -- 2.7.4