From 273f704186de66d840fc9f9ec0ea702099ece38e Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Thu, 17 May 2012 09:24:43 -0700 Subject: [PATCH] Remove beginPath function. PDF subpaths are begun automatically by moveTo. Was causing issues with opening and printing some PDFs in Adobe Reader. --- lib/mixins/vector.coffee | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/mixins/vector.coffee b/lib/mixins/vector.coffee index 739be93..7888c7c 100644 --- a/lib/mixins/vector.coffee +++ b/lib/mixins/vector.coffee @@ -10,9 +10,6 @@ module.exports = restore: -> @addContent 'Q' - beginPath: -> - @addContent 'm' - closePath: -> @addContent 'h'