Project

General

Profile

Defect #28565 » fix_height_of_line_break_in_issue_pdf_v2.diff

Second version, fixing more whitespace issues. - Bernhard Rohloff, 2018-08-02 10:35

View differences:

lib/redmine/export/pdf/issues_pdf_helper.rb
202 202
                pdf.RDMwriteHTMLCell(190,5,'','',
203 203
                      changeset.comments.to_s, issue.attachments, "")
204 204
              end
205
              pdf.ln
205
              pdf.ln(5)
206 206
            end
207 207
          end
208 208
  
......
221 221
                pdf.RDMMultiCell(190,5, "- " + string)
222 222
              end
223 223
              if journal.notes?
224
                pdf.ln unless journal.details.empty?
224
                pdf.ln(2) unless journal.details.empty?
225 225
                pdf.SetFontStyle('',8)
226 226
                text = textilizable(journal, :notes,
227 227
                  :only_path => false,
......
231 231
                )
232 232
                pdf.RDMwriteFormattedCell(190,5,'','', text, issue.attachments, "")
233 233
              end
234
              pdf.ln
234
              pdf.ln(8)
235 235
            end
236 236
          end
237 237
  
(4-4/12)