diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs index ebabe4436..005e38040 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs @@ -204,10 +204,10 @@ internal class ProfileManagerWidget using (ImRaii.Disabled(this.pickerSelectedPluginInternalName == null)) { - if (ImGui.Button("Do it") && selected != null) + if (ImGui.Button("Add plugin") && selected != null) { // TODO: handle error - profile.AddOrUpdate(selected.Manifest.InternalName, selected.IsLoaded, false); + profile.AddOrUpdate(selected.Manifest.InternalName, true, false); Task.Run(() => profman.ApplyAllWantStates()) .ContinueWith(this.installer.DisplayErrorContinuation, "Could not change plugin state."); }