From 8f0b75f18ef0412b55ea6a00dee193bebee7b836 Mon Sep 17 00:00:00 2001 From: WuYi Date: Tue, 22 Oct 2024 21:40:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=85=E5=BC=80=E5=90=AF?= =?UTF-8?q?=E7=82=AB=E5=BD=A9=E5=8A=9F=E8=83=BD=E7=9A=84=E7=BA=A2=E8=93=9D?= =?UTF-8?q?=E6=96=B9=E5=86=B2=E7=AA=81bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../helper/frame/panel/history/MyTeamMatchHistoryPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/helper/frame/panel/history/MyTeamMatchHistoryPanel.java b/src/main/java/helper/frame/panel/history/MyTeamMatchHistoryPanel.java index d0ac8e2..399267c 100644 --- a/src/main/java/helper/frame/panel/history/MyTeamMatchHistoryPanel.java +++ b/src/main/java/helper/frame/panel/history/MyTeamMatchHistoryPanel.java @@ -47,7 +47,6 @@ public MyTeamMatchHistoryPanel() { this.setLayout(new CardLayout()); JPanel jPanel = new JPanel(); jPanel.setBackground(ColorConstant.DARK_THREE); - jPanel.add(getMapSide(GameDataCache.myTeamMatchHistory.get(0).getMapSide())); if (AppCache.settingPersistence.getPickSkin()) { PickSkinBox pickSkinBox = new PickSkinBox(); pickSkinBox.setBackground(ColorConstant.DARK_THREE); @@ -56,6 +55,7 @@ public MyTeamMatchHistoryPanel() { jPanel.add(pickSkinBox); } if (AppCache.settingPersistence.getShowMatchHistory()) { + jPanel.add(getMapSide(GameDataCache.myTeamMatchHistory.get(0).getMapSide())); for (TeamSummonerBO data : GameDataCache.myTeamMatchHistory) { jPanel.add(new HorizontalDivider(this.getWidth() - 10)); MyTeamMatchHistoryLine builder = MyTeamMatchHistoryLine.builder(buildTeamLineData(data), this.getWidth());