mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-08 20:23:26 -05:00
[O] allow override TabTitle
TabTitle 直读支持覆盖现有的
This commit is contained in:
parent
70114bcd61
commit
8f47ef2b50
|
|
@ -325,7 +325,6 @@ public class LoadLocalImages
|
|||
var genres = Singleton<DataManager>.Instance.GetMusicGenres();
|
||||
foreach (var (id, genre) in genres)
|
||||
{
|
||||
if (____genreSprite.GetValueOrDefault(id) is not null) continue;
|
||||
var filename = genre.FileName.ToLowerInvariant();
|
||||
var locPath = localAssetsContents.TryGetValue(filename, out var laPath) ? laPath : tabTitlePaths.GetValueOrDefault(filename);
|
||||
if (locPath is null) continue;
|
||||
|
|
@ -337,7 +336,6 @@ public class LoadLocalImages
|
|||
var versions = Singleton<DataManager>.Instance.GetMusicVersions();
|
||||
foreach (var (id, version) in versions)
|
||||
{
|
||||
if (____versionSprite.GetValueOrDefault(id) is not null) continue;
|
||||
var filename = version.FileName.ToLowerInvariant();
|
||||
var locPath = localAssetsContents.TryGetValue(filename, out var laPath) ? laPath : tabTitlePaths.GetValueOrDefault(filename);
|
||||
if (locPath is null) continue;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user