Display non working days on gantt image according to settings (#2161).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10751 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-10-29 10:23:59 +00:00
parent 1f55907f83
commit c00084b80b
1 changed files with 1 additions and 1 deletions

View File

@ -457,7 +457,7 @@ module Redmine
wday = @date_from.cwday wday = @date_from.cwday
(date_to - @date_from + 1).to_i.times do (date_to - @date_from + 1).to_i.times do
width = zoom width = zoom
gc.fill(wday == 6 || wday == 7 ? '#eee' : 'white') gc.fill(non_working_week_days.include?(wday) ? '#eee' : 'white')
gc.stroke('#ddd') gc.stroke('#ddd')
gc.stroke_width(1) gc.stroke_width(1)
gc.rectangle(left, 2 * header_height, left + width, 2 * header_height + g_height - 1) gc.rectangle(left, 2 * header_height, left + width, 2 * header_height + g_height - 1)