Reduce droplist border significance to match original border style

- Issue MatterHackers/MCCentral#2529
Inconsistent border strengths
This commit is contained in:
John Lewin 2018-04-01 14:23:27 -07:00
parent fa9419efb0
commit e94f1f04af
14 changed files with 32 additions and 24 deletions

View file

@ -229,7 +229,10 @@ namespace MatterHackers.MatterControl.DesignTools
{
rowContainer = CreateSettingsRow(property.DisplayName.Localize());
var dropDownList = new DropDownList("Name".Localize(), theme.Colors.PrimaryTextColor, Direction.Down, pointSize: theme.DefaultFontSize);
var dropDownList = new DropDownList("Name".Localize(), theme.Colors.PrimaryTextColor, Direction.Down, pointSize: theme.DefaultFontSize)
{
BorderColor = theme.GetBorderColor(75)
};
var orderedItems = new string[] { "Right", "Back", "Up" };
@ -604,7 +607,10 @@ namespace MatterHackers.MatterControl.DesignTools
}
else
{
var dropDownList = new DropDownList("Name".Localize(), theme.Colors.PrimaryTextColor, Direction.Down, pointSize: theme.DefaultFontSize);
var dropDownList = new DropDownList("Name".Localize(), theme.Colors.PrimaryTextColor, Direction.Down, pointSize: theme.DefaultFontSize)
{
BorderColor = theme.GetBorderColor(75)
};
var sortableAttribute = propertyInfo.GetCustomAttributes(true).OfType<SortableAttribute>().FirstOrDefault();
var orderedItems = sortableAttribute != null ? enumItems.OrderBy(n => n.Value) : enumItems;