Optimize UI for complex timelines with many tracks

This commit is contained in:
Wojtek Figat
2021-07-29 10:25:58 +02:00
parent 3331753bcd
commit d505160444
6 changed files with 12 additions and 13 deletions

View File

@@ -11,7 +11,7 @@ namespace FlaxEditor.GUI.Timeline.GUI
/// The timeline background control.
/// </summary>
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
public class Background : ContainerControl
class Background : ContainerControl
{
private readonly Timeline _timeline;
private float[] _tickSteps;

View File

@@ -9,7 +9,7 @@ namespace FlaxEditor.GUI.Timeline.GUI
/// The timeline current position tracking control.
/// </summary>
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
public class PositionHandle : ContainerControl
class PositionHandle : ContainerControl
{
private Timeline _timeline;

View File

@@ -10,7 +10,7 @@ namespace FlaxEditor.GUI.Timeline.GUI
/// Timeline ending edge control that can be used to modify timeline duration with a mouse.
/// </summary>
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
public class TimelineEdge : Control
class TimelineEdge : Control
{
private Timeline _timeline;
private bool _isMoving;