diff --git a/runelite-client/src/main/java/net/runelite/client/ui/overlay/components/ProgressBarComponent.java b/runelite-client/src/main/java/net/runelite/client/ui/overlay/components/ProgressBarComponent.java index 01f52d6ad0..8ad38171ae 100644 --- a/runelite-client/src/main/java/net/runelite/client/ui/overlay/components/ProgressBarComponent.java +++ b/runelite-client/src/main/java/net/runelite/client/ui/overlay/components/ProgressBarComponent.java @@ -114,7 +114,7 @@ public class ProgressBarComponent implements LayoutableRenderableEntity // Draw bar graphics.setColor(backgroundColor); - graphics.fillRect(barX, barY, width, height); + graphics.fillRect(barX + progressFill, barY, width - progressFill, height); graphics.setColor(foregroundColor); graphics.fillRect(barX, barY, progressFill, height);