Commit 318bd10c authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Gantt: fixes position of line in pdf (#6348).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4475 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 9c637796
......@@ -157,6 +157,8 @@ module Redmine
@subjects_rendered = true unless options[:only] == :lines
@lines_rendered = true unless options[:only] == :subjects
render_end(options)
end
def render_project(project, options={})
......@@ -221,6 +223,13 @@ module Redmine
options[:indent] -= options[:indent_increment]
end
end
def render_end(options={})
case options[:format]
when :pdf
options[:pdf].Line(15, options[:top], PDF::TotalWidth, options[:top])
end
end
def subject_for_project(project, options)
case options[:format]
......@@ -929,8 +938,6 @@ module Redmine
:pdf => pdf
}
render(options)
pdf.Line(15, top, subject_width+g_width, top)
pdf.Output
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment