GuiVideoFiles (1 Viewer)

toertchn

Portal Member
January 5, 2008
23
4
Home Country
Germany Germany
As I noticed the contextMenu "set movie unwatched" don't remember the last item and scolls up after action.

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;
 

Users who are viewing this thread

Top Bottom