This commit is contained in:
Ottermandias 2023-08-16 17:39:40 +02:00
parent 04b76ddee1
commit 0c07d4bec6
2 changed files with 0 additions and 4 deletions

View file

@ -8,7 +8,6 @@ using Penumbra.Communication;
using Penumbra.Mods; using Penumbra.Mods;
using Penumbra.Services; using Penumbra.Services;
using Penumbra.String.Classes; using Penumbra.String.Classes;
using static Penumbra.Api.Ipc;
namespace Penumbra.Api; namespace Penumbra.Api;

View file

@ -395,9 +395,6 @@ public class SettingsTab : ITab
Checkbox("Use Interface Collection for other Plugin UIs", Checkbox("Use Interface Collection for other Plugin UIs",
"Use the collection assigned to your interface for other plugins requesting UI-textures and icons through Dalamud.", "Use the collection assigned to your interface for other plugins requesting UI-textures and icons through Dalamud.",
_dalamudSubstitutionProvider.Enabled, _dalamudSubstitutionProvider.Set); _dalamudSubstitutionProvider.Enabled, _dalamudSubstitutionProvider.Set);
var icon = _dalamud.TextureProvider.GetIcon(60026);
if (icon != null)
ImGui.Image(icon.ImGuiHandle, new Vector2(icon.Width, icon.Height));
Checkbox($"Use {TutorialService.AssignedCollections} in Character Window", Checkbox($"Use {TutorialService.AssignedCollections} in Character Window",
"Use the individual collection for your characters name or the Your Character collection in your main character window, if it is set.", "Use the individual collection for your characters name or the Your Character collection in your main character window, if it is set.",
_config.UseCharacterCollectionInMainWindow, v => _config.UseCharacterCollectionInMainWindow = v); _config.UseCharacterCollectionInMainWindow, v => _config.UseCharacterCollectionInMainWindow = v);