mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
refactor: OnUiHideToggled -> UiHideToggled
This commit is contained in:
parent
1c1a007e41
commit
8661f6e796
1 changed files with 2 additions and 2 deletions
|
|
@ -123,7 +123,7 @@ namespace Dalamud.Game.Gui
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Event which is fired when the game UI hiding is toggled.
|
/// Event which is fired when the game UI hiding is toggled.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event EventHandler<bool> OnUiHideToggled;
|
public event EventHandler<bool> UiHideToggled;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Event that is fired when the currently hovered item changes.
|
/// Event that is fired when the currently hovered item changes.
|
||||||
|
|
@ -574,7 +574,7 @@ namespace Dalamud.Game.Gui
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
this.OnUiHideToggled?.Invoke(this, this.GameUiHidden);
|
this.UiHideToggled?.Invoke(this, this.GameUiHidden);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue