Draw Manager: Fix blended color.

This commit is contained in:
Clément Foucault 2017-04-11 16:13:09 +02:00
parent 181c8f8ccd
commit 70e4f1e003
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ float *DRW_color_background_blend_get(int theme_id)
default: ret = colors[10]; break;
}
UI_GetThemeColorBlendShade4fv(theme_id, TH_BACK, 0.5, -16, ret);
UI_GetThemeColorBlendShade4fv(theme_id, TH_BACK, 0.5, 0, ret);
return ret;
}