UI: Theme Editor: Mention editors that share settings

It's not immediately clear for new users that editing the
"File Browser" colors will also adjust the "Asset Browser".

Similar to how it's already the case for UV/Image Editor,
mention in the name of the panel other editors that share
the same color settings.

* Dope Sheet > Dope Sheet/Timeline
* File Browser > File/Asset Browser
* Graph Editor > Graph Editor/Drivers

The only exception is Node Editor because eventually it
will get too long.
This commit is contained in:
Pablo Vazquez
2023-08-31 13:10:43 +02:00
parent 4649cf15b7
commit 9ab3a8f840

View File

@@ -4123,25 +4123,25 @@ static void rna_def_userdef_themes(BlenderRNA *brna)
static const EnumPropertyItem active_theme_area[] = {
{0, "USER_INTERFACE", ICON_WORKSPACE, "User Interface", ""},
{19, "STYLE", ICON_FONTPREVIEW, "Text Style", ""},
{18, "BONE_COLOR_SETS", ICON_COLOR, "Bone Color Sets", ""},
{1, "VIEW_3D", ICON_VIEW3D, "3D Viewport", ""},
{3, "GRAPH_EDITOR", ICON_GRAPH, "Graph Editor", ""},
{4, "DOPESHEET_EDITOR", ICON_ACTION, "Dope Sheet", ""},
{5, "NLA_EDITOR", ICON_NLA, "Nonlinear Animation", ""},
{6, "IMAGE_EDITOR", ICON_IMAGE, "UV/Image Editor", ""},
{7, "SEQUENCE_EDITOR", ICON_SEQUENCE, "Video Sequencer", ""},
{8, "TEXT_EDITOR", ICON_TEXT, "Text Editor", ""},
{4, "DOPESHEET_EDITOR", ICON_ACTION, "Dope Sheet/Timeline", ""},
{16, "FILE_BROWSER", ICON_FILEBROWSER, "File/Asset Browser", ""},
{3, "GRAPH_EDITOR", ICON_GRAPH, "Graph Editor/Drivers", ""},
{6, "IMAGE_EDITOR", ICON_IMAGE, "Image/UV Editor", ""},
{15, "INFO", ICON_INFO, "Info", ""},
{20, "CLIP_EDITOR", ICON_TRACKER, "Movie Clip Editor", ""},
{9, "NODE_EDITOR", ICON_NODETREE, "Node Editor", ""},
{11, "PROPERTIES", ICON_PROPERTIES, "Properties", ""},
{5, "NLA_EDITOR", ICON_NLA, "Nonlinear Animation", ""},
{12, "OUTLINER", ICON_OUTLINER, "Outliner", ""},
{14, "PREFERENCES", ICON_PREFERENCES, "Preferences", ""},
{15, "INFO", ICON_INFO, "Info", ""},
{16, "FILE_BROWSER", ICON_FILEBROWSER, "File Browser", ""},
{11, "PROPERTIES", ICON_PROPERTIES, "Properties", ""},
{17, "CONSOLE", ICON_CONSOLE, "Python Console", ""},
{20, "CLIP_EDITOR", ICON_TRACKER, "Movie Clip Editor", ""},
{21, "TOPBAR", ICON_TOPBAR, "Top Bar", ""},
{22, "STATUSBAR", ICON_STATUSBAR, "Status Bar", ""},
{23, "SPREADSHEET", ICON_SPREADSHEET, "Spreadsheet"},
{22, "STATUSBAR", ICON_STATUSBAR, "Status Bar", ""},
{8, "TEXT_EDITOR", ICON_TEXT, "Text Editor", ""},
{21, "TOPBAR", ICON_TOPBAR, "Top Bar", ""},
{7, "SEQUENCE_EDITOR", ICON_SEQUENCE, "Video Sequencer", ""},
{18, "BONE_COLOR_SETS", ICON_COLOR, "Bone Color Sets", ""},
{0, nullptr, 0, nullptr, nullptr},
};