Change default border color to transparent (#128)

This commit is contained in:
azakhi 2019-03-11 19:43:28 +03:00 committed by Ben Wallis
parent 444f09751a
commit db258de11e
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ namespace Filtration.ObjectModel
get
{
var borderColorBlockItem = BlockItems.OfType<BorderColorBlockItem>().FirstOrDefault();
return borderColorBlockItem?.Color ?? new Color { A = 240, R = 0, G = 0, B = 0 };
return borderColorBlockItem?.Color ?? new Color { A = 0, R = 255, G = 255, B = 255 };
}
}