# HG changeset patch # User teknolog # Date 1268518833 0 # Node ID 31e34b8e2878047a9638213a04dff6d03fdc4b08 # Parent c5cd47bc11ef4da30214b1369434b6e2641aa6a2 Fix for regression in popup menu fix for queue view diff -r c5cd47bc11ef -r 31e34b8e2878 application/sis/podcatcher_udeb.sis Binary file application/sis/podcatcher_udeb.sis has changed diff -r c5cd47bc11ef -r 31e34b8e2878 application/sis/podcatcher_udeb_signed.sis Binary file application/sis/podcatcher_udeb_signed.sis has changed diff -r c5cd47bc11ef -r 31e34b8e2878 application/sis/podcatcher_urel.sis Binary file application/sis/podcatcher_urel.sis has changed diff -r c5cd47bc11ef -r 31e34b8e2878 application/sis/podcatcher_urel_signed.sis Binary file application/sis/podcatcher_urel_signed.sis has changed diff -r c5cd47bc11ef -r 31e34b8e2878 application/src/PodcastListView.cpp --- a/application/src/PodcastListView.cpp Sat Mar 13 22:00:39 2010 +0000 +++ b/application/src/PodcastListView.cpp Sat Mar 13 22:20:33 2010 +0000 @@ -384,16 +384,17 @@ void CPodcastListView::HandleLongTapEventL( const TPoint& aPenEventLocation, const TPoint& /* aPenEventScreenLocation */) { DP("CPodcastListView::HandleLongTapEventL BEGIN"); - iListContainer->SetLongTapDetectedL(ETrue); const TInt KListboxDefaultHeight = 19; // for some reason it returns 19 for an empty listbox in S^1 TInt lbHeight = iListContainer->Listbox()->CalcHeightBasedOnNumOfItems( iListContainer->Listbox()->Model()->NumberOfItems()) - KListboxDefaultHeight; if(iStylusPopupMenu && aPenEventLocation.iY < lbHeight) { + iListContainer->SetLongTapDetectedL(ETrue); iStylusPopupMenu->ShowMenu(); iStylusPopupMenu->SetPosition(aPenEventLocation); } + DP("CPodcastListView::HandleLongTapEventL END"); }