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-02-20 17:54:17 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-02-20 17:54:17 +0300
commitdc9fafd7a6016a86f166914cea97423392dcf580 (patch)
tree2550fa25700a55fe6793b0557e42e459c2fd59fe /source/blender/src/drawobject.c
parent79a354172a84eabf4e0a2e91577bdc60e209f640 (diff)
Fix for bug #7873: circle select highlights wrong vertices temporarily.
Diffstat (limited to 'source/blender/src/drawobject.c')
-rw-r--r--source/blender/src/drawobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawobject.c b/source/blender/src/drawobject.c
index 7b1d6403efa..6edb89a1049 100644
--- a/source/blender/src/drawobject.c
+++ b/source/blender/src/drawobject.c
@@ -1491,7 +1491,7 @@ static void draw_dm_verts__mapFunc(void *userData, int index, float *co, float *
bglVertex3fv(co);
bglEnd();
- BIF_ThemeColor4(TH_VERTEX_SELECT);
+ BIF_ThemeColor4(data->sel?TH_VERTEX_SELECT:TH_VERTEX);
glPointSize(size);
bglBegin(GL_POINTS);
} else {