This is a migrated thread and some comments may be shown as answers.

Odd highlighting active for some things

2 Answers 48 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Morten Nilsen
Top achievements
Rank 1
Morten Nilsen asked on 27 Jul 2010, 11:14 AM
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..

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
  ▲
▲ ▲

2 Answers, 1 is accepted

Sort by
0
Accepted
Jordan
Telerik team
answered on 30 Jul 2010, 12:27 PM
Hello Morten,

 Thanks for reporting this problem. Have you changed JustCode Method Identifier Marker from Visual Studio Options\Environment\Fonts and Colors? We have similar reports when the user has changed that option.

Best wishes,
Jordan
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Morten Nilsen
Top achievements
Rank 1
answered on 30 Jul 2010, 01:12 PM
Yes, in fact, the default color is way to bright in my opinion, so I made it slightly darker..
I haven't seen the black background for some time now, but if I open the right (wrong?) file again, I'm sure it will make a reappearance..

  -- Cheers, Morten
Tags
General Discussions
Asked by
Morten Nilsen
Top achievements
Rank 1
Answers by
Jordan
Telerik team
Morten Nilsen
Top achievements
Rank 1
Share this question
or