fix: OpenConfigUi invocation

This commit is contained in:
goat 2021-08-24 19:13:03 +02:00
parent 12c5740afc
commit b5ccc2751a
No known key found for this signature in database
GPG key ID: F18F057873895461
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ namespace Dalamud.CorePlugin
// this.window.IsOpen = true;
}
private void OnOpenConfigUi(object sender, EventArgs e)
private void OnOpenConfigUi()
{
// this.window.IsOpen = true;
}

View file

@ -227,7 +227,7 @@ namespace Dalamud.Interface
/// </summary>
internal void OpenConfig()
{
this.OpenConfigUi?.Invoke(this, null);
this.OpenConfigUi?.Invoke();
}
private void OnDraw()