Settings menu structure
#1
Hello, I've been looking into a way to reorganize the structure of XBMC settings menus. For example move the "Video output" tab from System settings to Videos settings. Could you please point me where to look?
Reply
#2
GUISettings.cpp
Reply
#3
To move the "Video output" tab from System settings to Videos settings u just have to move

Code:
CSettingsCategory* vs = AddCategory([b]4[/b], "videoscreen", 21373);
.... many lines of code....
#if defined(_LINUX) && !defined(__APPLE__)
  AddSeparator(vs, "videoscreen.sep2");
  AddBool(vs, "videoscreen.haslcd", 4501, false);
#endif

from 4th to 5th group
Reply
#4
Lightning-fast reply! Thanks a lot!
Reply

Logout Mark Read Team Forum Stats Members Help
Settings menu structure0