Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2f462d73
Commit
2f462d73
authored
Mar 04, 2009
by
Adrian Robert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
parent
a728dc59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/nsfont.m
src/nsfont.m
+1
-1
No files found.
src/ChangeLog
View file @
2f462d73
2009-03-04 Nikolaj Schumacher <me@nschum.de>
* nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp
value.
2009-03-04 Jason Rumney <jasonr@gnu.org>
* w32fns.c (w32_wnd_proc): Only ignore IME messages for the
...
...
src/nsfont.m
View file @
2f462d73
...
...
@@ -1053,7 +1053,7 @@ WITH_BACKGROUND is zero when (FROM > 0 || TO < S->nchars). */
CGContextSetFont
(
gcontext
,
font
->
cgfont
);
CGContextSetFontSize
(
gcontext
,
font
->
size
);
if
(
ns_antialias_text
==
NO
||
font
->
size
<=
ns_antialias_threshold
)
if
(
ns_antialias_text
==
Qnil
||
font
->
size
<=
ns_antialias_threshold
)
CGContextSetShouldAntialias
(
gcontext
,
0
);
else
CGContextSetShouldAntialias
(
gcontext
,
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment