Code style cleanup

This commit is contained in:
Chandler Cox
2023-02-01 18:28:00 -06:00
parent b862126209
commit 2592841793

View File

@@ -1141,9 +1141,8 @@ namespace FlaxEngine.GUI
public override void OnMouseLeave()
{
if (Cursor == CursorType.IBeam)
{
Cursor = CursorType.Default;
}
base.OnMouseLeave();
}
@@ -1162,9 +1161,7 @@ namespace FlaxEngine.GUI
}
if (Cursor == CursorType.Default && _isEditing)
{
Cursor = CursorType.IBeam;
}
}
/// <inheritdoc />
@@ -1195,9 +1192,7 @@ namespace FlaxEngine.GUI
}
if (Cursor == CursorType.Default)
{
Cursor = CursorType.IBeam;
}
return true;
}