Fix T57794: Text in Clip Editor Dopesheet not visible

Maniphest Tasks: T57794

Differential Revision: https://developer.blender.org/D3937
This commit is contained in:
Philipp Oeser 2018-11-13 11:28:59 +01:00
parent 34058c4ff1
commit de36a2f99b
2 changed files with 4 additions and 0 deletions

@ -876,6 +876,7 @@ const bTheme U_theme_default = {
.button_text = RGBA(0xe5e5e5ff),
.button_text_hi = RGBA(0xffffffff),
.list = RGBA(0x666666ff),
.list_text = RGBA(0x000000ff),
.list_text_hi = RGBA(0xffffffff),
.panelcolors = {
.header = RGBA(0x424242cc),

@ -85,6 +85,9 @@ static void do_versions_theme(UserDef *userdef, bTheme *btheme)
if (!USER_VERSION_ATLEAST(280, 29)) {
copy_v4_v4_char(btheme->tbuts.navigation_bar, U_theme_default.ttopbar.header);
}
if (!USER_VERSION_ATLEAST(280, 31)) {
copy_v4_v4_char(btheme->tclip.list_text, U_theme_default.tclip.list_text);
}
#undef USER_VERSION_ATLEAST
}