mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Fixed disabled color
This commit is contained in:
parent
db0c27a376
commit
1aa42cba8b
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue