DarkUI icon indicating copy to clipboard operation
DarkUI copied to clipboard

DarkComboBox disabled text color incorrect

Open Kyle-Lancaster opened this issue 5 years ago • 1 comments
trafficstars

When DarkComboBox is disabled the text is still the same white color as enabled text, but it should be a darker grey color.

image

Kyle-Lancaster avatar Aug 08 '20 20:08 Kyle-Lancaster

In DarkComboBox.cs

Line 117 add var disabledColor = Colors.DisabledText;

Line 140 add

if (!Enabled) { textColor = disabledColor; }

danielj23 avatar Aug 10 '20 13:08 danielj23