mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 20:24:16 +01:00
fix: handling installed plugins in category view, adjusted tags
This commit is contained in:
parent
5bdb7d4903
commit
9fead82626
2 changed files with 2 additions and 2 deletions
|
|
@ -24,7 +24,7 @@ namespace Dalamud.Interface.Internal
|
||||||
new(FirstTagBasedCategoryId + 0, "other", () => Locs.Category_Other),
|
new(FirstTagBasedCategoryId + 0, "other", () => Locs.Category_Other),
|
||||||
new(FirstTagBasedCategoryId + 1, "jobs", () => Locs.Category_Jobs),
|
new(FirstTagBasedCategoryId + 1, "jobs", () => Locs.Category_Jobs),
|
||||||
new(FirstTagBasedCategoryId + 2, "ui", () => Locs.Category_UI),
|
new(FirstTagBasedCategoryId + 2, "ui", () => Locs.Category_UI),
|
||||||
new(FirstTagBasedCategoryId + 3, "minigame", () => Locs.Category_MiniGames),
|
new(FirstTagBasedCategoryId + 3, "minigames", () => Locs.Category_MiniGames),
|
||||||
new(FirstTagBasedCategoryId + 4, "inventory", () => Locs.Category_Inventory),
|
new(FirstTagBasedCategoryId + 4, "inventory", () => Locs.Category_Inventory),
|
||||||
new(FirstTagBasedCategoryId + 5, "sound", () => Locs.Category_Sound),
|
new(FirstTagBasedCategoryId + 5, "sound", () => Locs.Category_Sound),
|
||||||
new(FirstTagBasedCategoryId + 6, "social", () => Locs.Category_Social),
|
new(FirstTagBasedCategoryId + 6, "social", () => Locs.Category_Social),
|
||||||
|
|
|
||||||
|
|
@ -741,7 +741,7 @@ namespace Dalamud.Interface.Internal.Windows
|
||||||
this.openPluginCollapsibles.Clear();
|
this.openPluginCollapsibles.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
var filteredManifests = pluginList.Where(rm => !this.IsManifestFiltered(rm));
|
var filteredManifests = pluginList.Where(rm => !this.IsManifestFiltered(rm) && !this.IsManifestInstalled(rm).IsInstalled);
|
||||||
var categoryManifestsList = this.categoryManager.GetCurrentCategoryContent(filteredManifests);
|
var categoryManifestsList = this.categoryManager.GetCurrentCategoryContent(filteredManifests);
|
||||||
|
|
||||||
if (categoryManifestsList.Count > 0)
|
if (categoryManifestsList.Count > 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue