From 27e1bf4b0fb40534ef0c49a3e9d682672f73b285 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Tue, 24 Nov 2009 09:30:22 -0800 Subject: [PATCH] Fix grid builder to properly generate png Port of blueprint commit eb58cdef26ea537cc65f842c7675c6575575f6c0 --- lib/compass/grid_builder.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compass/grid_builder.rb b/lib/compass/grid_builder.rb index 2b5c5d34..e81d1f6e 100644 --- a/lib/compass/grid_builder.rb +++ b/lib/compass/grid_builder.rb @@ -48,7 +48,7 @@ module Compass canvas.background_fill = 'white' canvas.g do |column| - column.rect(self.column_width, @height).styles(:fill => "#e8effb") + column.rect(self.column_width - 1, @height).styles(:fill => "#e8effb") end canvas.g do |baseline|