mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
Merge pull request #1140 from Infiziert90/master
This commit is contained in:
commit
15ea80d21a
3 changed files with 67 additions and 1 deletions
|
|
@ -266,6 +266,15 @@ internal class DalamudInterface : IDisposable, IServiceType
|
|||
this.pluginWindow.BringToFront();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Opens the <see cref="PluginInstallerWindow"/> on the plugin installed.
|
||||
/// </summary>
|
||||
public void OpenPluginInstallerPluginInstalled()
|
||||
{
|
||||
this.pluginWindow.OpenInstalledPlugins();
|
||||
this.pluginWindow.BringToFront();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Opens the <see cref="PluginInstallerWindow"/> on the plugin changelogs.
|
||||
/// </summary>
|
||||
|
|
@ -432,6 +441,15 @@ internal class DalamudInterface : IDisposable, IServiceType
|
|||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// Sets the current search text for the plugin installer.
|
||||
/// </summary>
|
||||
/// <param name="text">The search term.</param>
|
||||
public void SetPluginInstallerSearchText(string text)
|
||||
{
|
||||
this.pluginWindow.SetSearchText(text);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Toggle the screen darkening effect used for the credits.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue