From de3f831ac3e6c90d8a1ef1ee3bf879580fa747ba Mon Sep 17 00:00:00 2001 From: Stormwind Date: Thu, 22 Oct 2015 12:43:18 +0200 Subject: [PATCH] Fix rewrite of background color <.< --- lib/rubella/output/image.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rubella/output/image.rb b/lib/rubella/output/image.rb index 7ab43ef..424019f 100644 --- a/lib/rubella/output/image.rb +++ b/lib/rubella/output/image.rb @@ -33,7 +33,7 @@ module Rubella y = @data.dataset_length*@field_size # buckets x field_size # start drawing the damn thing - image = Magick::Image.new(x, y) { self.background_color = "lime" } + image = Magick::Image.new(x, y) { self.background_color = "white" } i = 0 @data.each do |point|