Browse Source

Merge pull request #51 in DESIGN/design from ~PLOUGH/10-design:feature/10.0 to feature/10.0

* commit 'dd6504b9b78e2263b4210c1be11af177196b5213':
  REPORT-7222 安全性之水印=>调整代码
master
superman 7 years ago
parent
commit
c3b70396dc
  1. 2
      designer-base/src/com/fr/design/report/WatermarkPreviewPane.java

2
designer-base/src/com/fr/design/report/WatermarkPreviewPane.java

@ -32,6 +32,6 @@ public class WatermarkPreviewPane extends JPanel {
super.paint(g);
Graphics2D g2d = (Graphics2D)g;
g2d.drawImage(UIConstants.WATERMARK_BACKGROUND, 0, 0, this.getWidth(), this.getHeight(), null);
new WatermarkPainter().paint(watermark, g2d, this.getWidth(), this.getHeight());
new WatermarkPainter(watermark).paint(g2d, this.getWidth(), this.getHeight());
}
}

Loading…
Cancel
Save