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

Fixed disabled color

This commit is contained in:
Brian Fiete 2022-05-24 08:39:57 -07:00
parent db0c27a376
commit 1aa42cba8b

View file

@ -891,7 +891,7 @@ namespace IDE.ui
{ {
var headItem = lvItem.GetSubItem(0) as WatchListViewItem; var headItem = lvItem.GetSubItem(0) as WatchListViewItem;
if ((headItem.mDisabled) || (lvItem.mFailed)) if ((headItem.mDisabled) || (lvItem.mFailed))
color = 0xFFFF4040; color = 0x80FFFFFF;
} }
using (g.PushColor(color)) using (g.PushColor(color))