Fix code style
This commit is contained in:
@@ -75,7 +75,7 @@ namespace FlaxEngine.GUI
|
|||||||
/// Event fired when users mouse enters the control.
|
/// Event fired when users mouse enters the control.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event Action HoverBegin;
|
public event Action HoverBegin;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Event fired when users mouse leaves the control.
|
/// Event fired when users mouse leaves the control.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -246,6 +246,7 @@ namespace FlaxEngine.GUI
|
|||||||
public override void OnMouseEnter(Float2 location)
|
public override void OnMouseEnter(Float2 location)
|
||||||
{
|
{
|
||||||
base.OnMouseEnter(location);
|
base.OnMouseEnter(location);
|
||||||
|
|
||||||
HoverBegin?.Invoke();
|
HoverBegin?.Invoke();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -256,7 +257,7 @@ namespace FlaxEngine.GUI
|
|||||||
{
|
{
|
||||||
OnPressEnd();
|
OnPressEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
HoverEnd?.Invoke();
|
HoverEnd?.Invoke();
|
||||||
|
|
||||||
base.OnMouseLeave();
|
base.OnMouseLeave();
|
||||||
|
|||||||
Reference in New Issue
Block a user