chore: rename config key for title bar options, move to experimental tab

This commit is contained in:
goat 2023-11-14 18:48:10 +01:00
parent cb968d24c1
commit 5daef60422
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
3 changed files with 9 additions and 6 deletions

View file

@ -28,6 +28,14 @@ public class SettingsTabExperimental : SettingsTab
new HintSettingsEntry(
Loc.Localize("DalamudSettingsPluginTestWarning", "Testing plugins may contain bugs or crash your game. Please only enable this if you are aware of the risks."),
ImGuiColors.DalamudRed),
new GapSettingsEntry(5),
new SettingsEntry<bool>(
Loc.Localize("DalamudSettingEnablePluginUIAdditionalOptions", "Add a button to the title bar of plugin windows to open additional options"),
Loc.Localize("DalamudSettingEnablePluginUIAdditionalOptionsHint", "This will allow you to pin certain plugin windows, make them clickthrough or adjust their opacity.\nThis may not be supported by all of your plugins. Contact the plugin author if you want them to support this feature."),
c => c.EnablePluginUiAdditionalOptions,
(v, c) => c.EnablePluginUiAdditionalOptions = v),
new GapSettingsEntry(5),