Object Mode: Fix outline getting darker during expand steps.

This commit is contained in:
Clément Foucault 2017-09-22 00:43:59 +02:00
parent 02cd48a087
commit 406427bd4e
1 changed files with 1 additions and 1 deletions

View File

@ -34,5 +34,5 @@ void main()
FragColor = (btests.z) ? color[2] : FragColor;
FragColor = (btests.w) ? color[3] : FragColor;
FragColor *= (is_blank_pixel) ? alpha : 1.0;
FragColor.a *= (is_blank_pixel) ? alpha : 1.0;
}