fix failing test due to bug in deep clone of graphics state

This commit is contained in:
Eliot Jones 2017-11-26 22:23:40 +00:00
parent ed634e86fe
commit 157030ea31

View File

@ -98,7 +98,7 @@
{ {
return new CurrentGraphicsState return new CurrentGraphicsState
{ {
FontState = FontState.DeepClone(), FontState = FontState?.DeepClone(),
RenderingIntent = RenderingIntent RenderingIntent = RenderingIntent
}; };
} }