Made stack window bg color transparent

This commit is contained in:
magenoxx 2012-06-27 15:13:59 +04:00
parent 75e641580c
commit d5c5a89e85
2 changed files with 2 additions and 1 deletions

View file

@ -88,6 +88,7 @@ public class Cards extends javax.swing.JPanel {
* @param color
*/
public void setBackgroundColor(Color color) {
setBackground(color);
cardArea.setOpaque(true);
cardArea.setBackground(color);
}