summaryrefslogtreecommitdiffstats
path: root/app/controllers/repositories_controller.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-05-16 04:29:51 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-05-16 04:29:51 +0000
commit559aa626cd24e0e2c6259b42749c15fcbde1ab55 (patch)
tree42a8ef2f6955326c6ebf90673c9db99086261370 /app/controllers/repositories_controller.rb
parent5ef5b3202d79ae599b74609cee82e08a40265f72 (diff)
downloadredmine-559aa626cd24e0e2c6259b42749c15fcbde1ab55.tar.gz
redmine-559aa626cd24e0e2c6259b42749c15fcbde1ab55.zip
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
Diffstat (limited to 'app/controllers/repositories_controller.rb')
-rw-r--r--app/controllers/repositories_controller.rb2
1 files changed, 1 insertions, 1 deletions
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,