mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
slightly offcenter
This commit is contained in:
parent
596ca5be86
commit
8887cca387
2 changed files with 22 additions and 22 deletions
|
@ -124,7 +124,6 @@ public final class CardRendererUtils {
|
||||||
g.drawRect(x + bevel, y, w - 2 * bevel, h - 1);
|
g.drawRect(x + bevel, y, w - 2 * bevel, h - 1);
|
||||||
g.drawRect(x + 1 + bevel, y + 1, w - 2 * bevel - 2, h - 3);
|
g.drawRect(x + 1 + bevel, y + 1, w - 2 * bevel - 2, h - 3);
|
||||||
g.setPaint(fill);
|
g.setPaint(fill);
|
||||||
g.setPaint(fill);
|
|
||||||
g.setColor(abitbrighter(g.getColor()));
|
g.setColor(abitbrighter(g.getColor()));
|
||||||
g.drawLine(x + 1 + bevel, y + 1, x + 1 + bevel + w - 2 * bevel - 2, y + 1);
|
g.drawLine(x + 1 + bevel, y + 1, x + 1 + bevel + w - 2 * bevel - 2, y + 1);
|
||||||
g.setPaint(fill);
|
g.setPaint(fill);
|
||||||
|
|
|
@ -525,7 +525,7 @@ public class ModernCardRenderer extends CardRenderer {
|
||||||
} else {
|
} else {
|
||||||
int x = totalContentInset;
|
int x = totalContentInset;
|
||||||
int y = typeLineY + boxHeight + (cardHeight - typeLineY - boxHeight - 4 - borderWidth * 3) / 2 - contentInset;
|
int y = typeLineY + boxHeight + (cardHeight - typeLineY - boxHeight - 4 - borderWidth * 3) / 2 - contentInset;
|
||||||
int w = contentWidth - 2;
|
int w = contentWidth;
|
||||||
int h = boxHeight - 4;
|
int h = boxHeight - 4;
|
||||||
|
|
||||||
CardRendererUtils.drawZendikarLandBox(g,
|
CardRendererUtils.drawZendikarLandBox(g,
|
||||||
|
@ -969,7 +969,8 @@ public class ModernCardRenderer extends CardRenderer {
|
||||||
} else // Big circle in the middle for Zendikar lands
|
} else // Big circle in the middle for Zendikar lands
|
||||||
{
|
{
|
||||||
if (allRules.size() == 1) {
|
if (allRules.size() == 1) {
|
||||||
drawBasicManaSymbol(g, x + w / 2 - h - h / 8, y - 3 * h / 4, 9 * h / 4, 9 * h / 4, ((TextboxBasicManaRule) allRules.get(0)).getBasicManaSymbol());
|
// Size of mana symbol = 9/4 * h, 3/4h above line
|
||||||
|
drawBasicManaSymbol(g, x + w / 2 - 9 * h / 8 + 1, y - 3 * h / 4, 9 * h / 4, 9 * h / 4, ((TextboxBasicManaRule) allRules.get(0)).getBasicManaSymbol());
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
if (allRules.size() > 1) {
|
if (allRules.size() > 1) {
|
||||||
|
|
Loading…
Reference in a new issue