diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index d4492ec68..bb99b9fc8 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -357,7 +357,7 @@ module Redmine end subject << view.link_to_issue(issue) subject << '' - html_subject(options, subject, :css => "issue-subject") + "\n" + html_subject(options, subject, :css => "issue-subject", :title => issue.subject) + "\n" when :image image_subject(options, issue.subject) when :pdf @@ -712,9 +712,7 @@ module Redmine style = "position: absolute;line-height:1.2em;height:16px;top:#{params[:top]}px;left:#{params[:indent]}px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis;" style << "width:#{params[:subject_width] - params[:indent]}px;" if params[:subject_width] - output = "
" - output << subject - output << "
" + output = view.content_tag 'div', subject, :class => options[:css], :style => style, :title => options[:title] @subjects << output output end