diff options
author | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2022-04-23 14:07:29 +0200 |
---|---|---|
committer | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2022-04-23 14:07:29 +0200 |
commit | 2b38d2d62391428a7fa40f268a4e65f876dd0e75 (patch) | |
tree | efae26394069301a114c1033798cf1308ccc9b6c /src/main/java/io/polyfrost/oneconfig/gui | |
parent | b161692ce6a93100ea882061dd9838b2f019d208 (diff) | |
download | OneConfig-2b38d2d62391428a7fa40f268a4e65f876dd0e75.tar.gz OneConfig-2b38d2d62391428a7fa40f268a4e65f876dd0e75.tar.bz2 OneConfig-2b38d2d62391428a7fa40f268a4e65f876dd0e75.zip |
fix blurry rendering when using mc gui scale + nanovg
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/gui')
-rw-r--r-- | src/main/java/io/polyfrost/oneconfig/gui/HudGui.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/HudGui.java b/src/main/java/io/polyfrost/oneconfig/gui/HudGui.java index 77521f9..83b5ac3 100644 --- a/src/main/java/io/polyfrost/oneconfig/gui/HudGui.java +++ b/src/main/java/io/polyfrost/oneconfig/gui/HudGui.java @@ -80,8 +80,9 @@ public class HudGui extends GuiScreen { }); if (hud == editingHud && !isDragging) { - Gui.drawRect(x + width - 3, y + height - 3, x + width + 3, y + height + 3, new Color(43, 159, 235).getRGB()); - Gui.drawRect(x + width - 2, y + height - 2, x + width + 2, y + height + 2, new Color(252, 252, 252).getRGB()); + RenderManager.setupAndDraw(true, (vg) -> { + RenderManager.drawCircle(vg, x + width, y + height, 3, new Color(43, 159, 235).getRGB()); + }); } } } |