As I noticed the contextMenu "set movie unwatched" don't remember the last item and scolls up after action.
Short fix on GUIVideoFiles.OnShowContextMenu():
Short fix on GUIVideoFiles.OnShowContextMenu():
Code:
case 830: // Reset watched status
int curItemIndex = facadeView.SelectedListItemIndex;
SetMovieUnwatched(item.Path);
LoadDirectory(_currentFolder);
UpdateButtonStates();
facadeView.SelectedListItemIndex = curItemIndex;
break;