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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-05-27 15:01:31 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-05-27 15:01:31 +0400
commit027b9a7e96de86be24df76dca1479d0f0a6ae565 (patch)
tree7cbbe86cea5ca33c894086780d9d24520784cb9c /source/blender/src/interface.c
parentbe215f74f3b08655dc01abba9f60e68153c4396a (diff)
Fix for bug #12533: color picker didn't always redraw rgb/hsv/hex values.
Diffstat (limited to 'source/blender/src/interface.c')
-rw-r--r--source/blender/src/interface.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index ab8e53c3cb3..6582866d9a1 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -3394,6 +3394,7 @@ static int ui_do_but_HSVCUBE(uiBut *but)
/* we redraw the entire block */
for (bt= but->block->buttons.first; bt; bt= bt->next) {
if(but->poin == bt->poin) VECCOPY(bt->hsv, but->hsv);
+ ui_check_but(bt);
ui_draw_but(bt);
}
ui_block_flush_back(but->block);