Fix to remove focus after popup menu
authorteknolog
Sun, 28 Feb 2010 21:38:03 +0000
changeset 27 f21a29fc4769
parent 26 71493655568a
child 28 7aa3544d8be3
Fix to remove focus after popup menu
application/sis/podcatcher_udeb.sis
application/sis/podcatcher_udeb_signed.sis
application/sis/podcatcher_urel.sis
application/sis/podcatcher_urel_signed.sis
application/src/PodcastListView.cpp
Binary file application/sis/podcatcher_udeb.sis has changed
Binary file application/sis/podcatcher_udeb_signed.sis has changed
Binary file application/sis/podcatcher_urel.sis has changed
Binary file application/sis/podcatcher_urel_signed.sis has changed
--- 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)