From: katpaga.a Date: Wed, 25 Sep 2013 13:27:31 +0000 (+0530) Subject: Fix for N_SE- 53198 (stopExpandanimation during keypress) X-Git-Tag: accepted/tizen/20131002.165803^2~40 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fframework%2Fnative%2Fuifw.git;a=commitdiff_plain;h=fa6758e5f955fa8cd809240029232c68e5ef1015 Fix for N_SE- 53198 (stopExpandanimation during keypress) Change-Id: I448d86776207ae356b095b86bd78b3b443a198ff Signed-off-by: katpaga.a --- diff --git a/src/ui/controls/FUiCtrl_TableViewPresenter.cpp b/src/ui/controls/FUiCtrl_TableViewPresenter.cpp index 2bdc216..a447bc7 100644 --- a/src/ui/controls/FUiCtrl_TableViewPresenter.cpp +++ b/src/ui/controls/FUiCtrl_TableViewPresenter.cpp @@ -5713,6 +5713,7 @@ _TableViewPresenter::OnKeyPressed(const _Control& source, const _KeyInfo& keyInf switch (keyCode) { case _KEY_UP: + StopExpandCollapseAnimation(); if (pFocusedControl != null) { pItem = dynamic_cast<_TableViewItem*>(pFocusedControl); @@ -5794,6 +5795,7 @@ _TableViewPresenter::OnKeyPressed(const _Control& source, const _KeyInfo& keyInf break; case _KEY_DOWN: + StopExpandCollapseAnimation(); if (pFocusedControl != null) { pItem = dynamic_cast<_TableViewItem*>(pFocusedControl);