Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/interface/interface_region_color_picker.c')
-rw-r--r--source/blender/editors/interface/interface_region_color_picker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/interface_region_color_picker.c b/source/blender/editors/interface/interface_region_color_picker.c
index 082459925e0..8830fc6feef 100644
--- a/source/blender/editors/interface/interface_region_color_picker.c
+++ b/source/blender/editors/interface/interface_region_color_picker.c
@@ -189,7 +189,7 @@ static void ui_update_color_picker_buts_rgb(
}
else if (STREQ(bt->str, "Hex: ")) {
float rgb_hex[3];
- unsigned char rgb_hex_uchar[3];
+ uchar rgb_hex_uchar[3];
double intpart;
char col[16];
@@ -544,7 +544,7 @@ static void ui_block_colorpicker(
/* Hex color is in sRGB space. */
float rgb_hex[3];
- unsigned char rgb_hex_uchar[3];
+ uchar rgb_hex_uchar[3];
copy_v3_v3(rgb_hex, rgba);