chore: make profiles category visible by default, ask before enabling

This commit is contained in:
goat 2023-10-05 21:03:24 +02:00
parent 412d94e437
commit 3a922e4d58
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
4 changed files with 35 additions and 10 deletions

View file

@ -48,6 +48,7 @@ public class SettingsTabExperimental : SettingsTab
new ThirdRepoSettingsEntry(),
/* Disabling profiles after they've been enabled doesn't make much sense, at least not if the user has already created profiles.
new GapSettingsEntry(5, true),
new SettingsEntry<bool>(
@ -55,6 +56,7 @@ public class SettingsTabExperimental : SettingsTab
Loc.Localize("DalamudSettingsEnableProfilesHint", "Enables plugin collections, which lets you create toggleable lists of plugins."),
c => c.ProfilesEnabled,
(v, c) => c.ProfilesEnabled = v),
*/
};
public override string Title => Loc.Localize("DalamudSettingsExperimental", "Experimental");