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:
authorTon Roosendaal <ton@blender.org>2006-03-12 17:51:33 +0300
committerTon Roosendaal <ton@blender.org>2006-03-12 17:51:33 +0300
commit0e44aa60b252547da82c04408bf15b1f3212aa9c (patch)
treea201ef22dbe023d5810ec2f1a0db1a24835df3a9 /source/blender/src/interface.c
parentde0262e4c81c7d7f036cc574f636a248f2cc9f27 (diff)
Half fix for colorpicker: after using sliders, the redraw callback was
too late... moved it one line up. :) Still unknown; why doesn't HSV color field not redraw?
Diffstat (limited to 'source/blender/src/interface.c')
-rw-r--r--source/blender/src/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index 26116126c76..7d660d01a1d 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -2458,8 +2458,8 @@ static int ui_do_but_SLI(uiBut *but)
ui_check_but(but);
ui_draw_but(but);
- ui_block_flush_back(but->block);
uibut_do_func(but);
+ ui_block_flush_back(but->block);
return but->retval;
}