UI: Color Picker, make HSV default.

Most artists agree that RGB by default is not as flexible as HSV.
It's just the first time it opens anyway, since it will remember whatever
was set last like it always does.
This commit is contained in:
Pablo Vazquez 2019-02-10 21:29:45 +01:00
parent 5d2b23766b
commit 09f4505712
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ static void ui_block_colorpicker(
uiBlock *block, uiBut *from_but, float rgba[4], bool show_picker)
{
/* ePickerType */
static char colormode = 0;
static char colormode = 1;
uiBut *bt;
int width, butwidth;
static char hexcol[128];