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
This commit is contained in:
Toshi MARUYAMA 2013-05-16 04:29:51 +00:00
parent 5ef5b3202d
commit 559aa626cd
1 changed files with 1 additions and 1 deletions

View File

@ -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,