Skip to content

Commit

Permalink
Add DrawMarginFrame as a designable property and remove non functiona…
Browse files Browse the repository at this point in the history
…l BorderBrush

See gui-cs/Terminal.Gui#1855
  • Loading branch information
tznind committed Jul 18, 2022
1 parent 405eab1 commit e520976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Design.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ protected virtual IEnumerable<Property> LoadDesignableProperties()
// Border properties - Most views dont have a border so Border is
if(View.Border != null)
{
yield return CreateSubProperty(nameof(Border.DrawMarginFrame), nameof(View.Border), View.Border);
yield return CreateSubProperty(nameof(Border.BorderStyle),nameof(View.Border),View.Border);
yield return CreateSubProperty(nameof(Border.BorderBrush),nameof(View.Border),View.Border);
yield return CreateSubProperty(nameof(Border.Effect3D),nameof(View.Border),View.Border);
}

Expand Down

0 comments on commit e520976

Please sign in to comment.