refactor: OnUiHideToggled -> UiHideToggled

This commit is contained in:
goat 2021-08-24 00:23:36 +02:00
parent 1c1a007e41
commit 8661f6e796
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -123,7 +123,7 @@ namespace Dalamud.Game.Gui
/// <summary>
/// Event which is fired when the game UI hiding is toggled.
/// </summary>
public event EventHandler<bool> OnUiHideToggled;
public event EventHandler<bool> UiHideToggled;
/// <summary>
/// Event that is fired when the currently hovered item changes.
@ -574,7 +574,7 @@ namespace Dalamud.Game.Gui
try
{
this.OnUiHideToggled?.Invoke(this, this.GameUiHidden);
this.UiHideToggled?.Invoke(this, this.GameUiHidden);
}
catch (Exception ex)
{