修复romitem没有即时显示收藏标记的问题,修复bug
This commit is contained in:
parent
2513cf4f7f
commit
ba52dd4e84
@ -43,6 +43,8 @@ namespace AxibugEmuOnline.Client
|
||||
|
||||
private void OnRomStarStateChanged(int romID, bool star)
|
||||
{
|
||||
if (nesRomFetchList == null) return;
|
||||
|
||||
var targetRom = nesRomFetchList.FirstOrDefault(rom => rom.ID == romID);
|
||||
if (targetRom == null) return;
|
||||
|
||||
|
@ -139,6 +139,7 @@ namespace AxibugEmuOnline.Client
|
||||
{
|
||||
DownloadingFlag.SetActiveEx(false);
|
||||
FileReadyFlag.SetActiveEx(false);
|
||||
Star.SetActiveEx(IsStar);
|
||||
|
||||
if (m_romfile == null) return;
|
||||
if (!m_romfile.InfoReady) return;
|
||||
|
Loading…
Reference in New Issue
Block a user