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/imbuf/SConscript
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/imbuf/SConscript')
-rw-r--r--source/blender/imbuf/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/SConscript b/source/blender/imbuf/SConscript
index 2cc67df9e0c..7055fcfd46a 100644
--- a/source/blender/imbuf/SConscript
+++ b/source/blender/imbuf/SConscript
@@ -24,4 +24,4 @@ if env['WITH_BF_QUICKTIME']==1:
defs.append('WITH_QUICKTIME')
env.BlenderLib ( libname = 'bf_imbuf', sources = sources, includes = Split(incs), defines = defs, libtype=['core','player'], priority = [80, 40] )
-env.BlenderLib ( libname = "bf_imbuf_cineondpx" sources = cineon, includes = Split(cincs), defines = defs, libtype=['core', 'player'] priority = [81, 41] ) \ No newline at end of file
+env.BlenderLib ( libname = "bf_imbuf_cineondpx", sources = cineon, includes = Split(cincs), defines = defs, libtype=['core', 'player'], priority = [81, 41] )