We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92c2f1b commit bdf3133Copy full SHA for bdf3133
src/java.desktop/macosx/native/libawt_lwawt/font/CGGlyphImages.m
@@ -494,8 +494,8 @@ @implementation CGGI_GlyphCanvas
494
const CGGI_RenderingMode* mode)
495
{
496
if (canvas->image != NULL &&
497
- width * CGGI_GLYPH_CANVAS_SLACK <= canvas->image->width &&
498
- height * CGGI_GLYPH_CANVAS_SLACK <= canvas->image->height)
+ width < canvas->image->width &&
+ height < canvas->image->height)
499
500
return;
501
}
0 commit comments