Skip to content

Commit

Permalink
Update CardImageRenderer.java
Browse files Browse the repository at this point in the history
update textbox line color
  • Loading branch information
kevlahnota authored Sep 17, 2023
1 parent 4923ad9 commit e869bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge-gui-mobile/src/forge/card/CardImageRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ private static void drawTextBox(Graphics g, CardView card, CardStateView state,
drawHeader(g, card, card.getState(true), altcolors, x, y, w - (w / 2), typeBoxHeight, noText, true);
drawTypeLine(g, card.getState(true), canShow, altcolors, x, y + typeBoxHeight, w - (w / 2), typeBoxHeight, noText, true, true);
float mod = (typeBoxHeight + typeBoxHeight);
setTextBox(g, card, state, altcolors, x, y + mod, w - (w / 2), h - mod, onTop, useCardBGTexture, noText, typeBoxHeight, typeBoxHeight, true, altstate, isFacedown);
setTextBox(g, card, card.getState(true), altcolors, x, y + mod, w - (w / 2), h - mod, onTop, useCardBGTexture, noText, typeBoxHeight, typeBoxHeight, true, altstate, isFacedown);
//right
setTextBox(g, card, state, colors, x + w / 2, y, w - (w / 2), h, onTop, useCardBGTexture, noText, 0f, 0f, false, altstate, isFacedown);
}
Expand Down

0 comments on commit e869bad

Please sign in to comment.