use theme color as selected border color

This commit is contained in:
Michael Becker 2020-04-09 02:31:57 -04:00
parent 3565784254
commit 4112dd1cd9
No known key found for this signature in database
GPG Key ID: 389DFF5D73781A12

View File

@ -449,7 +449,7 @@ namespace UniversalEditor.Plugins.Multimedia.UserInterface.Editors.Multimedia.Pa
e.Graphics.FillRectangle(new SolidBrush(entry.Color), rect);
if (entry == SelectedEntry)
{
e.Graphics.DrawRectangle(new Pen(Colors.LightSteelBlue, new Measurement(2, MeasurementUnit.Pixel)), new Rectangle(x, y, w, h));
e.Graphics.DrawRectangle(new Pen(SystemColors.HighlightBackground, new Measurement(2, MeasurementUnit.Pixel)), new Rectangle(x, y, w, h));
}
zcount++;
x += w;