Skip to content
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.

Commit

Permalink
Fix HTML printing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Dec 20, 2015
1 parent df8556b commit ff25a82
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/qz/PrintHTML.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ public void print() throws PrinterException {

try{
for (String s : getHTMLDataArray()) {
if (s.trim().isEmpty()) {
continue;
}
this.setText(s + "</html>");
j.add(this);

Expand Down

0 comments on commit ff25a82

Please sign in to comment.