Skip to content

Commit

Permalink
Update ImageView.java
Browse files Browse the repository at this point in the history
isempty missing in streambuffer on android
  • Loading branch information
kevlahnota authored Nov 17, 2024
1 parent f6d4e32 commit c9e733e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ public void draw(Graphics g) {
}
}
// spire colors
if (!colorID.isEmpty()) {
if (colorID.length() > 0) {
textRenderer.drawText(g, colorID.toString(), FSkinFont.forHeight(w / 5), Color.WHITE, x, y + h / 4, w, h, y, h, false, Align.center, true);
}
} else if (item instanceof ConquestCommander) {
Expand Down

0 comments on commit c9e733e

Please sign in to comment.