Fuzzy text in NSStatusItem

I show statusItem at startup like this:

theItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];

 NSString *theString = [textField stringValue];
 (textField.stringValue = theString);

    [theItem setTitle:theString];
    [theItem setHighlightMode:YES];

The text looks very fuzzy. How to clear text appearance?

Thank.

Floor

Here is a screenshot of the digital clock in menu mode at the top and NSStatusItem at the bottom:

Digital Clock on top, NSStatusItem title on bottom

+5
source share
2 answers

It looks pretty good to me.

test status bar with "testing. ..." in text

Good, not fine, but it's more about uneven scaling than fuzzy. Is that what you see too?

0
source

Have you tried to draw text in the image and use this image in NSStatusItem?

+1
source

All Articles