Disable alpha pass for all painting modes

It's not actually supported and gives artifacts when tried to be used.
This commit is contained in:
Sergey Sharybin 2012-12-03 16:19:38 +00:00
parent 6ce73abde8
commit 458131e395

@ -229,7 +229,10 @@ static int check_alpha_pass(Base *base)
if (G.f & G_PICKSEL)
return 0;
if (base->object->mode & OB_MODE_ALL_PAINT)
return 0;
return (base->object->dtx & OB_DRAWTRANSP);
}