# HG changeset patch # User teknolog # Date 1267393083 0 # Node ID f21a29fc4769c33fe00fcded8f10d700bad865b8 # Parent 71493655568a8ee1febbeaefbe0c81d04ddb8ef3 Fix to remove focus after popup menu diff -r 71493655568a -r f21a29fc4769 application/sis/podcatcher_udeb.sis Binary file application/sis/podcatcher_udeb.sis has changed diff -r 71493655568a -r f21a29fc4769 application/sis/podcatcher_udeb_signed.sis Binary file application/sis/podcatcher_udeb_signed.sis has changed diff -r 71493655568a -r f21a29fc4769 application/sis/podcatcher_urel.sis Binary file application/sis/podcatcher_urel.sis has changed diff -r 71493655568a -r f21a29fc4769 application/sis/podcatcher_urel_signed.sis Binary file application/sis/podcatcher_urel_signed.sis has changed diff -r 71493655568a -r f21a29fc4769 application/src/PodcastListView.cpp --- a/application/src/PodcastListView.cpp Sun Feb 28 21:19:40 2010 +0000 +++ b/application/src/PodcastListView.cpp Sun Feb 28 21:38:03 2010 +0000 @@ -103,6 +103,13 @@ void CPodcastListContainer::SetLongTapDetected(TBool aLongTapDetected) { iLongTapDetected = aLongTapDetected; + + if (aLongTapDetected == EFalse) + { + TPointerEvent event; + event.iType = TPointerEvent::EButton1Up; + CCoeControl::HandlePointerEventL(event); + } } void CPodcastListContainer::HandleResourceChange(TInt aType)