mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 00:07:49 +01:00
chore: don't persist load all api levels, banned plugins
This commit is contained in:
parent
bc348cf181
commit
33f7140b75
5 changed files with 20 additions and 44 deletions
|
|
@ -764,16 +764,14 @@ namespace Dalamud.Interface.Internal
|
|||
|
||||
ImGui.Separator();
|
||||
|
||||
if (ImGui.MenuItem("Load all API levels (ONLY FOR DEVELOPERS!!!)", null, configuration.LoadAllApiLevels))
|
||||
if (ImGui.MenuItem("Load all API levels (ONLY FOR DEVELOPERS!!!)", null, pluginManager.LoadAllApiLevels))
|
||||
{
|
||||
configuration.LoadAllApiLevels = !configuration.LoadAllApiLevels;
|
||||
configuration.Save();
|
||||
pluginManager.LoadAllApiLevels = !pluginManager.LoadAllApiLevels;
|
||||
}
|
||||
|
||||
if (ImGui.MenuItem("Load blacklisted plugins", null, configuration.LoadBannedPlugins))
|
||||
if (ImGui.MenuItem("Load blacklisted plugins", null, pluginManager.LoadBannedPlugins))
|
||||
{
|
||||
configuration.LoadBannedPlugins = !configuration.LoadBannedPlugins;
|
||||
configuration.Save();
|
||||
pluginManager.LoadBannedPlugins = !pluginManager.LoadBannedPlugins;
|
||||
}
|
||||
|
||||
ImGui.Separator();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue