From: Toshi MARUYAMA Date: Thu, 16 May 2013 04:29:51 +0000 (+0000) Subject: increase base height of author lines on 'Commits per author' graph (#14068, #1983) X-Git-Tag: 2.4.0~356 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=559aa626cd24e0e2c6259b42749c15fcbde1ab55;p=redmine.git increase base height of author lines on 'Commits per author' graph (#14068, #1983) Contributed by Mischa The Evil. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11847 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/repositories_controller.rb b/app/controllers/repositories_controller.rb index 77b74bfe3..0e4f4821f 100644 --- a/app/controllers/repositories_controller.rb +++ b/app/controllers/repositories_controller.rb @@ -411,7 +411,7 @@ class RepositoriesController < ApplicationController fields = fields.collect {|c| c.gsub(%r{<.+@.+>}, '') } graph = SVG::Graph::BarHorizontal.new( - :height => 15 * commits_data.length, + :height => 30 * commits_data.length, :width => 800, :fields => fields, :stack => :side,