michael@0: # HG changeset patch michael@0: # User Jeff Muizelaar michael@0: # Date 1276629019 14400 michael@0: # Node ID b5eb246c152dedb895d3010eb7192f88cce51146 michael@0: # Parent 792cd3e8aa59b24c333f2c90f938beda361b3336 michael@0: cairo: PS: Add missing 'q' when resetting clip path michael@0: michael@0: diff --git a/gfx/cairo/cairo/src/cairo-ps-surface.c b/gfx/cairo/cairo/src/cairo-ps-surface.c michael@0: --- a/gfx/cairo/cairo/src/cairo-ps-surface.c michael@0: +++ b/gfx/cairo/cairo/src/cairo-ps-surface.c michael@0: @@ -3696,7 +3696,7 @@ _cairo_ps_surface_set_paginated_mode (vo michael@0: if (surface->clipper.clip.path != NULL) { michael@0: status = _cairo_pdf_operators_flush (&surface->pdf_operators); michael@0: michael@0: - _cairo_output_stream_printf (surface->stream, "Q\n"); michael@0: + _cairo_output_stream_printf (surface->stream, "Q q\n"); michael@0: _cairo_surface_clipper_reset (&surface->clipper); michael@0: } michael@0: }