summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-02-21 15:06:11 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-02-21 15:06:11 +0000
commit2f7084f7a27671c5f0b2db55fe3bdafe507f4f12 (patch)
tree7217a6d6ebfd82e07d548966c61f34480403b914 /app
parent111ae3c2e95843b1506a68541f0a9198a1e8724f (diff)
downloadredmine-2f7084f7a27671c5f0b2db55fe3bdafe507f4f12.tar.gz
redmine-2f7084f7a27671c5f0b2db55fe3bdafe507f4f12.zip
Prevent text wrap in gantt subjects (#7280).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4913 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/gantts/show.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb
index 33220eea9..1e38647ee 100644
--- a/app/views/gantts/show.html.erb
+++ b/app/views/gantts/show.html.erb
@@ -60,7 +60,7 @@ end
# Width of the entire chart
g_width = (@gantt.date_to - @gantt.date_from + 1)*zoom
-@gantt.render(:top => headers_height + 8, :zoom => zoom, :g_width => g_width)
+@gantt.render(:top => headers_height + 8, :zoom => zoom, :g_width => g_width, :subject_width => subject_width)
g_height = [(20 * (@gantt.number_of_rows + 6))+150, 206].max
t_height = g_height + headers_height