mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
Make it search for the plugin and open the installed category
This commit is contained in:
parent
4acadd5c9e
commit
94538d1728
3 changed files with 52 additions and 3 deletions
|
|
@ -196,7 +196,7 @@ public sealed class DalamudPluginInterface : IDisposable
|
|||
public List<string> PluginInternalNames => Service<PluginManager>.Get().InstalledPlugins.Select(p => p.Manifest.InternalName).ToList();
|
||||
|
||||
/// <summary>
|
||||
/// Opens the <see cref="PluginInstallerWindow"/>.
|
||||
/// Opens the <see cref="PluginInstallerWindow"/> with the plugin name set as search target.
|
||||
/// </summary>
|
||||
/// <returns>Returns false if the DalamudInterface was null.</returns>
|
||||
public bool OpenPluginInstaller()
|
||||
|
|
@ -207,7 +207,9 @@ public sealed class DalamudPluginInterface : IDisposable
|
|||
return false;
|
||||
}
|
||||
|
||||
dalamudInterface.OpenPluginInstaller();
|
||||
dalamudInterface.OpenPluginInstallerPluginInstalled();
|
||||
dalamudInterface.SetPluginInstallerSearchText(this.pluginName);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue