Skip to content

Commit

Permalink
Fix: blue was assigned green (mentioned in sgothel#47 (comment))
Browse files Browse the repository at this point in the history
  • Loading branch information
OndrejSpanel committed Sep 22, 2020
1 parent 14fc8bd commit 83d36ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.opengrabeso</groupId>
<artifactId>text-renderer</artifactId>
<version>0.1.5</version>
<version>0.1.6</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ public final void setColor(final float r, final float g, final float b, final fl
// Store the color
this.r = r;
this.g = g;
this.b = g;
this.b = b;
this.a = a;

// Change the color
Expand Down

0 comments on commit 83d36ce

Please sign in to comment.