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:
authorNicholas Bishop <nicholasbishop@gmail.com>2006-12-24 12:45:49 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2006-12-24 12:45:49 +0300
commitacd521d0f8311b5e79aa5ca822c9937e6ab23ad2 (patch)
treef738127b369c5c1483394fa04e4902a89e4f1315 /source/blender/src/retopo.c
parentb72bfbd9238b54bf38dec5a713cad59fa086d8e6 (diff)
Fixed bug #5506 retopo - ctrl-click extrude doesn't work for the first vertice.
Diffstat (limited to 'source/blender/src/retopo.c')
-rw-r--r--source/blender/src/retopo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/retopo.c b/source/blender/src/retopo.c
index c2f29f443a1..9c23b86cbc8 100644
--- a/source/blender/src/retopo.c
+++ b/source/blender/src/retopo.c
@@ -802,6 +802,7 @@ void retopo_matrix_update(View3D *v3d)
if(!rvd) {
rvd= MEM_callocN(sizeof(RetopoViewData),"RetopoViewData");
v3d->retopo_view_data= rvd;
+ rvd->queue_matrix_update= 1;
}
if(rvd && rvd->queue_matrix_update) {
glGetDoublev(GL_MODELVIEW_MATRIX, rvd->modelviewmat);