diff --git a/source/blender/src/drawobject.c b/source/blender/src/drawobject.c index 92646ec0c5c..5f2c4ccfae3 100644 --- a/source/blender/src/drawobject.c +++ b/source/blender/src/drawobject.c @@ -3667,8 +3667,7 @@ void draw_object(Base *base) if(dtx & OB_BOUNDBOX) draw_bounding_volume(ob); if(dtx & OB_TEXSPACE) drawtexspace(ob); if(dtx & OB_DRAWNAME) { - if(ob->type==OB_LAMP) glRasterPos3fv(ob->obmat[3]); - else glRasterPos3f(0.0, 0.0, 0.0); + glRasterPos3f(0.0, 0.0, 0.0); BMF_DrawString(G.font, " "); BMF_DrawString(G.font, ob->id.name+2);