Revise printer tabs layout

This commit is contained in:
John Lewin 2017-08-15 12:32:09 -07:00
parent 70fe9123a1
commit 6c215415d0
7 changed files with 111 additions and 18 deletions

View file

@ -50,8 +50,8 @@ namespace MatterHackers.MatterControl.CustomWidgets
public class HorizontalLine : GuiWidget
{
public HorizontalLine(int alpha = 255)
: base(1, 1)
public HorizontalLine(int alpha = 255, int height = 1)
: base(1, height)
{
BackgroundColor = GetBorderColor(alpha);
HAnchor = HAnchor.Stretch;