From: Keuckdo Bang Date: Sat, 27 Apr 2013 03:28:58 +0000 (+0900) Subject: Fixed crash when chaging keyboard. X-Git-Tag: 2.1b_release~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ed10d04f10ab65bfc7c87836e87a489773a8032;p=framework%2Fosp%2Fuifw.git Fixed crash when chaging keyboard. Change-Id: Ia0b70069c5fe6b312d3042ead78f47255c84fd00 --- diff --git a/src/ui/controls/FUiCtrl_FormImpl.cpp b/src/ui/controls/FUiCtrl_FormImpl.cpp index 67f6cd3..0d510c3 100644 --- a/src/ui/controls/FUiCtrl_FormImpl.cpp +++ b/src/ui/controls/FUiCtrl_FormImpl.cpp @@ -1616,11 +1616,15 @@ _FormImpl::OnFormOrientationStatusRequested(void) _ControlImplManager* pImplManager = _ControlImplManager::GetInstance(); SysAssert(pImplManager); - OrientationStatus status = pImplManager->GetOrientationStatus(GetOrientation()); + OrientationStatus status = ORIENTATION_STATUS_PORTRAIT; + int appType = _AppInfo::GetAppType(); + if (!(appType & _APP_TYPE_IME_APP)) + { + status = pImplManager->GetOrientationStatus(GetOrientation()); + } return status; } - bool _FormImpl::IsOpaque(void) const {