fix lockup issue for certificate popup
authorSeongjun Yim <se201.yim@samsung.com>
Tue, 16 Jul 2013 09:50:36 +0000 (18:50 +0900)
committerSeongjun Yim <se201.yim@samsung.com>
Tue, 16 Jul 2013 09:50:36 +0000 (18:50 +0900)
Change-Id: I2461c151ab1d20ea9c27179063c78bd4aab2ae69
Signed-off-by: Seongjun Yim <se201.yim@samsung.com>
src/controls/FWebCtrl_CertificateConfirmPopup.cpp

index b76bba3..e49cb4b 100755 (executable)
@@ -267,7 +267,10 @@ _CertificateConfirmPopup::OnKeyReleased(Control& source, const KeyEventInfo& key
        result r = E_SUCCESS;
        if ((keyEventInfo.GetKeyCode() == KEY_ESC || keyEventInfo.GetKeyCode() == KEY_BACK) && source.GetShowState() == true)
        {
-               HandleUserAction(false);
+               if (__certPopupMode == CERTIFICATE_POPUP_MODE_USER_CONFIRM)
+               {
+                       HandleUserAction(false);
+               }
                r = HidePopup();
                if (IsFailed(r))
                {