--- old/src/macosx/native/sun/awt/CTextPipe.m 2013-06-05 11:41:53.962273000 -0700 +++ new/src/macosx/native/sun/awt/CTextPipe.m 2013-06-05 11:41:52.620670700 -0700 @@ -139,6 +139,8 @@ CGContextRef cgRef = qsdo->cgRef; CGAffineTransform ctmText = CGContextGetTextMatrix(cgRef); + BOOL saved = false; + /* Save and restore of graphics context is done before the iteration. This seems to work using our test case (see bug ID 7158350) so we are restoring it at the end of the for loop. If we find out that save/restore outside the loop @@ -171,10 +173,19 @@ CFRelease(fallback); if (cgFallback) { + if (!saved) { + CGContextSaveGState(cgRef); + saved = true; + } CGContextSetFont(cgRef, cgFallback); CFRelease(cgFallback); } } + } else { + if (saved) { + CGContextRestoreGState(cgRef); + saved = false; + } } // if we have per-glyph transformations