From 3c0d3d5dabf65d199b41b7f886f534ced31135ac Mon Sep 17 00:00:00 2001 From: CrushedPixel Date: Mon, 1 Jun 2015 16:31:41 +0200 Subject: [PATCH] Changed GuiProgressBar color to Grey because people complained that Red raped their eyes --- .../crushedpixel/replaymod/gui/elements/GuiProgressBar.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java b/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java index f53f8d8f..bc75873b 100644 --- a/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java +++ b/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java @@ -55,7 +55,7 @@ public class GuiProgressBar extends Gui { * Replaces the default progress String that is being displayed (x%) with a custom String. * This has to be called whenever the progress itself changes. * Setting progressString to null uses the default progress String. - * @param progressString + * @param progressString The String to display */ public void setProgressString(String progressString) { this.progressString = progressString; @@ -80,7 +80,7 @@ public class GuiProgressBar extends Gui { // Draws red progress drawRect(xPosition + BORDER_WIDTH, yPosition + BORDER_WIDTH, - xPosition + BORDER_WIDTH + progressWidth, yPosition + height - BORDER_WIDTH, Color.RED.getRGB()); + xPosition + BORDER_WIDTH + progressWidth, yPosition + height - BORDER_WIDTH, Color.GRAY.getRGB()); int xMiddle = xPosition + (width/2);