Compare commits
No commits in common. "6ae83248efe78170d8c5e34d97ab6fe434e6b773" and "536f4e1b7dc8c89179163ec6b34d1c0f062e44d0" have entirely different histories.
6ae83248ef
...
536f4e1b7d
1 changed files with 1 additions and 4 deletions
|
@ -49,10 +49,7 @@ public class SudokuView extends JFrame {
|
|||
if ((row / 3 + col / 3) % 2 == 1) {
|
||||
grid[row][col].setBackground(Color.LIGHT_GRAY);
|
||||
}
|
||||
|
||||
Font boldFont = new Font(grid[row][col].getFont().getName(), Font.BOLD, grid[row][col].getFont().getSize());
|
||||
grid[row][col].setFont(boldFont);
|
||||
grid[row][col].setForeground(Color.BLACK);
|
||||
|
||||
gridPanel.add(grid[row][col]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue