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:
authorCampbell Barton <ideasman42@gmail.com>2015-03-06 19:53:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-03-06 19:53:08 +0300
commitcf1227d4ad7a9314a489a7168fbab35f8c5985fe (patch)
treeadd3cb7e60ae2f08cba0aada3e23ba2e47155f5c /source/blender/editors/space_view3d/drawobject.c
parent1c3b2c58af923a05f24ac114aa208737111ddc25 (diff)
Fix edit-lattice leaving incorrect point-size
Diffstat (limited to 'source/blender/editors/space_view3d/drawobject.c')
-rw-r--r--source/blender/editors/space_view3d/drawobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c
index 805098c72a2..5f6a368faa9 100644
--- a/source/blender/editors/space_view3d/drawobject.c
+++ b/source/blender/editors/space_view3d/drawobject.c
@@ -1951,8 +1951,8 @@ static void lattice_draw_verts(Lattice *lt, DispList *dl, BPoint *actbp, short s
}
}
- glPointSize(1.0);
bglEnd();
+ glPointSize(1.0);
}
static void drawlattice__point(Lattice *lt, DispList *dl, int u, int v, int w, int actdef_wcol)