Skip to content

Commit

Permalink
Merge branch 'refs/heads/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
4379711 committed Sep 9, 2024
2 parents a1de3fa + 7ea5a2d commit 8d44233
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ public void createButtons() {
GameQueue gameQueue = GameDataCache.selectGameQueueList.get(key);

JCheckBox button = new JCheckBox(gameQueue.getName());
button.setSelected(gameQueue.isSelect());
button.addActionListener(e -> {
gameQueue.setSelect(true);
button.setSelected(GameDataCache.selectGameQueueList.get(key).isSelect());
button.addChangeListener(e -> {
GameDataCache.selectGameQueueList.get(key).setSelect(button.isSelected());
}
);
button.setPreferredSize(new Dimension(250, 30));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private void showMatchHistory() throws IOException {
if (FrameInnerCache.myTeamMatchHistoryPanel == null) {
MyTeamMatchHistoryPanel.start();
}else{
FrameInnerCache.myTeamMatchHistoryPanel.setVisible(true);
MyTeamMatchHistoryPanel.start();
}
}
}
Expand Down

0 comments on commit 8d44233

Please sign in to comment.