New method updateMoveList to fill JScrollPane

Quicksave
Justin 2025-06-20 01:58:28 +02:00
parent d1d85ed428
commit 47591a7264
1 changed files with 12 additions and 0 deletions

View File

@ -145,6 +145,18 @@ public class GameGui {
return statsPanel;
}
public void updateMoveList(List<String> moves) {
moveListPanel.removeAll();
for (String move : moves) {
JLabel moveLabel = new JLabel(move);
moveLabel.setForeground(Color.WHITE);
moveLabel.setFont(new Font("SansSerif", Font.PLAIN, 18));
moveListPanel.add(moveLabel);
}
moveListPanel.revalidate();
moveListPanel.repaint();
}
public JLabel getField(int row, int col) {
return fields[row][col];
}