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>2016-02-09 12:53:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-09 12:54:49 +0300
commitae2036e69b88abb5c65179a70e97be17655bc7d4 (patch)
tree2da485e92b260384d384bff627ce8a3b461f9421 /source/blender/editors
parent73b672ee9738ff6c4df66cf5b0cf329f05a91e6a (diff)
Add missing gl line width for curve normals
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_view3d/drawobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c
index 10c0a7e611a..0094fc7edb5 100644
--- a/source/blender/editors/space_view3d/drawobject.c
+++ b/source/blender/editors/space_view3d/drawobject.c
@@ -6354,6 +6354,7 @@ static void draw_editnurb(
* when at its lowest, don't render normals */
if ((cu->flag & CU_3D) && (ts->normalsize > 0.0015f) && (cu->drawflag & CU_HIDE_NORMALS) == 0) {
BevList *bl;
+ glLineWidth(1.0f);
for (bl = ob->curve_cache->bev.first, nu = nurb; nu && bl; bl = bl->next, nu = nu->next) {
BevPoint *bevp = bl->bevpoints;
int nr = bl->nr;