moving gui elements to base agg

This commit is contained in:
Lars Brubaker 2022-10-06 17:59:31 -07:00
parent 182d02a793
commit 4adc22561f
6 changed files with 27 additions and 1088 deletions

View file

@ -47,7 +47,10 @@ namespace MatterHackers.MatterControl
private TypeFacePrinter typeFacePrinter = null;
private PrinterConfig printer = null;
private int forceStartLine = -1;
/// <summary>
/// The first line to show from the existing visible lines. If -1 then show to the bottom of the list.
/// </summary>
private int forceStartLine = -1;
private Func<TerminalLine, string> _lineFilterFunction;