From dcdfdd343f7e73ed7b1a09a0df23fc08bccd22d6 Mon Sep 17 00:00:00 2001 From: "ALIENJACK\\alien" Date: Fri, 24 Jan 2025 10:19:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=A4=84=E4=BA=8ERom?= =?UTF-8?q?=E5=88=97=E8=A1=A8UI=E4=B8=AD=E6=97=B6,=E5=A6=82=E6=9E=9CRom?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E4=B8=BA=E7=A9=BA,=E5=91=BC=E5=87=BA?= =?UTF-8?q?=E4=BE=A7=E8=BE=B9=E6=A0=8F=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98,=E5=9C=A8=E8=BF=99=E7=A7=8D=E6=83=85=E5=86=B5?= =?UTF-8?q?=E4=B8=8B=E5=B0=86=E6=97=A0=E6=B3=95=E5=91=BC=E5=87=BA=E4=BE=A7?= =?UTF-8?q?=E8=BE=B9=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Script/AppMain/UI/GamesUI/RomListMenuItem.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/GamesUI/RomListMenuItem.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/GamesUI/RomListMenuItem.cs index 296bde08..23317935 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/GamesUI/RomListMenuItem.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/GamesUI/RomListMenuItem.cs @@ -59,7 +59,10 @@ namespace AxibugEmuOnline.Client protected override void OnCmdOptionMenu() - { + { + var thirdMenuGroup = SubMenuItemGroup as ThirdMenuRoot; + if (thirdMenuGroup.itemGroup.DataList == null || thirdMenuGroup.itemGroup.DataList.Count == 0) return; + OverlayManager.PopSideBar(m_options); }