up vote 5 down vote favorite
share [g+] share [fb]

I'm using Visual C# 2010 Express (final, not beta or anything) and I'm having an issue with blurry fonts while debugging. The font appears normal everywhere (intellisense, menus, code) but when a breakpoint is reached most of the debugger related text is blurry (Locals, Call Stack, "data tooltips").

Here are screenshots of the normal text and the blurry text while debugging: http://img682.imageshack.us/i/normalh.png/

http://img145.imageshack.us/i/blurry.png/

Is this a known bug or something related to my system? Is there a way to fix it?

link|improve this question

The two images are about the same sharpness to my eye. – Robert Harvey Apr 17 '10 at 19:35
I don't see it from the pictures. You got any more of that ? – Romain Hippeau Apr 17 '10 at 19:36
I do see the difference (make sure you zoom in on the images). Looks like ClearType to me. If you don't like it, try disabling ClearType on a system level, or switch to a non-ClearType font. – Michael Petrotta Apr 17 '10 at 19:39
The screenshots look the same to me too. Maybe the debugger is putting the screen into a non-native resolution? That would make it look like crap on the screen, but the screenshot would look normal. – Chris Thornton Apr 17 '10 at 19:41
feedback

4 Answers

up vote 2 down vote accepted

You might have to change the setting of "Fonts and Colors"

  1. Tools -> Options -> Fonts and Colors
  2. pick the item of "[Watch, Locals, and Autos Tool Windows]" from "Show setting for"
  3. Change the Font and Size to the setting as same as the setting of "Text Editor"
link|improve this answer
That was it, I can't believe I missed the show setting for drop down! Thanks a lot! – John Doe Apr 17 '10 at 20:37
feedback

Actually, this appears to be not ClearType but WPF font smoothing. The difference is significant. ClearType doesn't do blurry, at least not on a standard LCD screen, it uses subpixels to anti-alias the fonts. When ClearType is disabled at the system level, WPF still renders using greyscale anti-aliasing. Try enabling ClearType.

link|improve this answer
1  
It seems only a few fonts render that way, changing from Segoe UI to Tahoma did the trick. – John Doe Apr 18 '10 at 14:59
feedback

The blurry text is a different font, and it's being rendered using ClearType. Some ClearType rendering, on some displays, with some fonts, at some point sizes looks unpleasantly blurry--that's what you've got.

You can change the font (in the Options menu) to a different face, or a larger size. It will also improve if you use a higher-resolution display.

link|improve this answer
feedback

I just opened up Visual Studio 2010 for the first time and got what i considered to be blurry font - for all scenarions, not just when debugging.

I simply switched the Font (Tools->Options->Environment->Fonts and Colors) from 'Consolas' to 'Courier New' and all was well...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.