1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Slight change to Emit tag drawing

This commit is contained in:
Brian Fiete 2022-04-17 08:01:49 -07:00
parent ea637c5684
commit 2d808ec649

View file

@ -524,9 +524,9 @@ namespace IDE.ui
if (rect.mHeight >= DarkTheme.sDarkTheme.mSmallBoldFont.GetLineSpacing())
g.SetFont(DarkTheme.sDarkTheme.mSmallBoldFont);
using (g.PushColor(0x20FFFFFF))
using (g.PushColor(0x80707070))
{
g.FillRect(rect.mX, rect.mY, rect.mWidth, rect.mHeight);
g.FillRect(rect.mX + 1, rect.mY + 1, rect.mWidth - 2, rect.mHeight - 2);
}
if ((mEditWidgetContent.mSelection != null) && (mCollapseIndex < mEditWidgetContent.mOrderedCollapseEntries.Count))