Skip to content

Commit

Permalink
Test using filled square for graph
Browse files Browse the repository at this point in the history
Signed-off-by: applenick <[email protected]>
  • Loading branch information
applenick committed Aug 3, 2023
1 parent f9ba356 commit a492ab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/dev/pgm/community/polls/PollComponents.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ default Component createGraphBreakdown(long yay, long nay) {
default Component createColoredBar(int yayBarLength, int nayBarLength, int maxBarLength) {
TextComponent.Builder builder = text();

// final Component SQUARE = text("\u2b1b");
final Component SQUARE = text("\u2b1c");
final Component SQUARE = text("\u2b1b"); // Filled square
// final Component SQUARE = text("\u2b1c"); - Hollow square

for (int i = 0; i < maxBarLength; i++) {
if (i < yayBarLength) {
Expand Down

0 comments on commit a492ab1

Please sign in to comment.