]> source.dussan.org Git - redmine.git/commitdiff
increase base height of author lines on 'Commits per author' graph (#14068, #1983)
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 16 May 2013 04:29:51 +0000 (04:29 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 16 May 2013 04:29:51 +0000 (04:29 +0000)
Contributed by Mischa The Evil.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11847 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/repositories_controller.rb

index 77b74bfe3a963f295241b66dc6616ab5f7c7c425..0e4f4821f0b7c9a667d651fbb32f768310c7424a 100644 (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,