mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
winlib/WIN32FontInfo.m: Use DEFAULT_QUALITY for fonts
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@30188 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a5b5c4f6b8
commit
287c0049dd
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2010-04-18 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/winlib/WIN32FontInfo.m:
|
||||
Use DEFAULT_QUALITY for fonts instead of ANTIALISED_QUALITY.
|
||||
|
||||
ANTIALISED_QUALITY forces small text to be non-antialised,
|
||||
which looks out of place compared with most Windows apps.
|
||||
|
||||
2010-04-15 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/win32/w32_create.m:
|
||||
|
|
|
@ -452,7 +452,7 @@ NSLog(@"No glyph for U%d", c);
|
|||
if (range.length)
|
||||
logfont.lfItalic = 1;
|
||||
|
||||
logfont.lfQuality = ANTIALIASED_QUALITY;
|
||||
logfont.lfQuality = DEFAULT_QUALITY;
|
||||
wcsncpy(logfont.lfFaceName,
|
||||
(const unichar*)[familyName cStringUsingEncoding: NSUnicodeStringEncoding],
|
||||
LF_FACESIZE);
|
||||
|
|
Loading…
Reference in a new issue