Skip to content

Commit

Permalink
[video] Swap position of menu items 'Manage versions' and 'Add as ver…
Browse files Browse the repository at this point in the history
…sion to...'.
  • Loading branch information
ksooo committed Dec 28, 2023
1 parent cd9674d commit ec8a7c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xbmc/video/dialogs/GUIDialogVideoInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1075,11 +1075,11 @@ int CGUIDialogVideoInfo::ManageVideoItem(const std::shared_ptr<CFileItem>& item)
// set or change movie set the movie belongs to
buttons.Add(CONTEXT_BUTTON_SET_MOVIESET, 20465);

if (!item->GetVideoInfoTag()->HasVideoVersions())
buttons.Add(CONTEXT_BUTTON_CONVERT_VIDEOVERSION, 40021); // Add as version to...

// manage video versions
buttons.Add(CONTEXT_BUTTON_MANAGE_VIDEOVERSION, 40001); // Manage versions

if (!item->GetVideoInfoTag()->HasVideoVersions())
buttons.Add(CONTEXT_BUTTON_CONVERT_VIDEOVERSION, 40021); // Add as version to...
}

if (type == MediaTypeEpisode &&
Expand Down

0 comments on commit ec8a7c8

Please sign in to comment.