feat: allow configuring the default page the installer opens to

This commit is contained in:
goat 2023-10-25 17:32:42 +02:00
parent 9850ac3f15
commit 9875a7ea31
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
11 changed files with 98 additions and 43 deletions

View file

@ -1242,7 +1242,8 @@ internal class InterfaceManager : IDisposable, IServiceType
if (gamepadState.Pressed(GamepadButtons.R3) > 0)
{
dalamudInterface.TogglePluginInstallerWindow();
var configuration = Service<DalamudConfiguration>.Get();
dalamudInterface.TogglePluginInstallerWindowTo(configuration.PluginInstallerOpen);
}
}
}