mirror of
https://github.com/correl/mage.git
synced 2025-01-11 11:05:23 +00:00
Fixed 'Graveyard' label cut on top in grave dialog
This commit is contained in:
parent
43d1dfc0ef
commit
1fac540639
1 changed files with 4 additions and 4 deletions
|
@ -42,15 +42,15 @@ public class ShadowLabel extends JLabel {
|
|||
if (!invertColors) {
|
||||
g2D.setFont(f);
|
||||
g2D.setColor(new Color(0, 0, 0));
|
||||
g2D.drawString(this.text, 1, 11);
|
||||
g2D.drawString(this.text, 1, 14);
|
||||
g2D.setColor(new Color(255, 255, 255, 230));
|
||||
g2D.drawString(this.text, 0, 10);
|
||||
g2D.drawString(this.text, 0, 13);
|
||||
} else {
|
||||
g2D.setFont(f);
|
||||
g2D.setColor(new Color(255, 255, 255, 230));
|
||||
g2D.drawString(this.text, 1, 11);
|
||||
g2D.drawString(this.text, 1, 14);
|
||||
g2D.setColor(new Color(0, 0, 0));
|
||||
g2D.drawString(this.text, 0, 10);
|
||||
g2D.drawString(this.text, 0, 13);
|
||||
}
|
||||
g2D.dispose();
|
||||
|
||||
|
|
Loading…
Reference in a new issue