This question is locked. New answers and comments are not allowed.
Hello,
I have this rather odd issue where I sometimes get some things highlighted with a black background..
This started happening one day, after I hit some obscure key combination by accident, I think..
![]()
In the above, the following pieces have the black background issue:
BeginLoading
BackgroundLoader
GetUnitFaults
OnLoadComplete
Clear
ForEach
Add
It also seems that when it first occurs in one file, it starts spreading to all other files I have open..
None of the text editor color settings define a black background, so I am stumped..
Anyone got some suggestions where I should start looking?
-- Cheers, Morten
▲
▲ ▲
I have this rather odd issue where I sometimes get some things highlighted with a black background..
This started happening one day, after I hit some obscure key combination by accident, I think..
public PendingFaultList(UnitBarcode unit){ BeginLoading(unit);}protected List<FaultLogItem> BackgroundLoader(UnitBarcode id){ return Common.Services.Debug.GetUnitFaults(id).Where(f => !f.Repaired.HasValue).OrderBy(f => f.Registered).ToList();}protected void OnLoadComplate(List<FaultLogItem> data){ Clear(); data.ForEach(f => Add(f));}In the above, the following pieces have the black background issue:
BeginLoading
BackgroundLoader
GetUnitFaults
OnLoadComplete
Clear
ForEach
Add
It also seems that when it first occurs in one file, it starts spreading to all other files I have open..
None of the text editor color settings define a black background, so I am stumped..
Anyone got some suggestions where I should start looking?
-- Cheers, Morten
▲
▲ ▲