How to globally remove the "Choose Art" option in the media info section
#1
I am trying to setup a very custom Kodi build (for grand parents) that has literally NO extra options to click on.

I have got it quite stripped down but I am a little stuck on how to remove the "Choose Art" option in the media info section.

I am using Kodi 17.4

I have tried changing, in the file :GUIDialogVideoInfo.cpp

// movie sets
if (item->m_bIsFolder && type == MediaTypeVideoCollection)
{
buttons.Add(CONTEXT_BUTTON_SET_MOVIESET_ART, 13511);
buttons.Add(CONTEXT_BUTTON_MOVIESET_ADD_REMOVE_ITEMS, 20465);
}
to
// movie sets
//if (item->m_bIsFolder && type == MediaTypeVideoCollection)
//{
// buttons.Add(CONTEXT_BUTTON_SET_MOVIESET_ART, 13511);
// buttons.Add(CONTEXT_BUTTON_MOVIESET_ADD_REMOVE_ITEMS, 20465);
//}

as well as :
if (item->m_bIsFolder && type == MediaTypeSeason)
buttons.Add(CONTEXT_BUTTON_SET_SEASON_ART, 13511);
to
//if (item->m_bIsFolder && type == MediaTypeSeason)
// buttons.Add(CONTEXT_BUTTON_SET_SEASON_ART, 13511);


And recompiled but no luck.

Any advice would be greatly appreciated!

Cheers,
Ken
Reply
#2
just remove the button from the skin.
Reply
#3
Hey iron_monkey!

hmm.. That almost sounds too easy, lol.

I will look into that now..

Cheers,
Ken
Reply

Logout Mark Read Team Forum Stats Members Help
How to globally remove the "Choose Art" option in the media info section0