Commit 9959697d403dbe1fd7f0647546a2502b2ef84b6d
1 parent
885da345
fix liteloader panel transparency when closing
Showing
1 changed file
with
2 additions
and
0 deletions
java/client/com/mumfrey/liteloader/client/gui/GuiLiteLoaderPanel.java
| @@ -385,6 +385,8 @@ public class GuiLiteLoaderPanel extends GuiScreen | @@ -385,6 +385,8 @@ public class GuiLiteLoaderPanel extends GuiScreen | ||
| 385 | { | 385 | { |
| 386 | this.mouseOverLogo = false; | 386 | this.mouseOverLogo = false; |
| 387 | 387 | ||
| 388 | + glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ZERO); | ||
| 389 | + | ||
| 388 | glPushMatrix(); | 390 | glPushMatrix(); |
| 389 | glTranslatef(xOffset, 0.0F, 0.0F); | 391 | glTranslatef(xOffset, 0.0F, 0.0F); |
| 390 | 392 |