# HG changeset patch
# User Sebastian Brannstrom <sebastianb@symbian.org>
# Date 1278712171 -3600
# Node ID 8466fe8528b675b8a4fce141c28d54b696d197bd
# Parent  9c77455964f8a523c925ca0cb3054ab5325a7f9c
Minor fix for highlight move in queue view

diff -r 9c77455964f8 -r 8466fe8528b6 application/src/PodcastQueueView.cpp
--- a/application/src/PodcastQueueView.cpp	Fri Jul 09 14:24:38 2010 +0100
+++ b/application/src/PodcastQueueView.cpp	Fri Jul 09 22:49:31 2010 +0100
@@ -273,8 +273,8 @@
 				iPodcastModel.ShowEngine().ResumeDownloadsL();
 				}
 				
+			UpdateListboxItemsL();
 			iListContainer->Listbox()->SetCurrentItemIndex(index - 1);
-			UpdateListboxItemsL();
 			}
 			break;
 		case EPodcastMoveDownloadDown:
@@ -297,8 +297,8 @@
 				iPodcastModel.ShowEngine().ResumeDownloadsL();
 				}
 			
-			iListContainer->Listbox()->SetCurrentItemIndex(index - 1);
 			UpdateListboxItemsL();
+			iListContainer->Listbox()->SetCurrentItemIndex(index + 1);
 			}
 			break;
 		case EPodcastSuspendDownloads: