refactor: use new ITextureProvider

This commit is contained in:
Anna 2023-09-03 18:04:08 -04:00
parent fb7ddd06e8
commit cfb78de616
Signed by: anna
GPG Key ID: D0943384CD9F87D1
2 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@ using Dalamud.Game.Command;
using Dalamud.Game.Gui;
using Dalamud.IoC;
using Dalamud.Plugin;
using Dalamud.Plugin.Services;
using XivCommon;
namespace QuestMap {
@ -27,6 +28,9 @@ namespace QuestMap {
[PluginService]
internal GameGui GameGui { get; init; } = null!;
[PluginService]
internal ITextureProvider TextureProvider { get; init; } = null!;
internal XivCommonBase Common { get; }
internal Configuration Config { get; }
internal Quests Quests { get; }

View File

@ -403,7 +403,7 @@ namespace QuestMap {
return wrap;
}
wrap = this.Plugin.DataManager.GetImGuiTextureIcon(this.Plugin.ClientState.ClientLanguage, id);
wrap = this.Plugin.TextureProvider.GetIcon(id);
if (wrap != null) {
this.Icons[id] = wrap;
}