Skip to content

Commit d2c6f5b

Browse files
authored
Merge pull request #638 from Rdornier/fix-arrow-opacity
Fix arrow opacity
2 parents 3e8fa73 + baf7b1a commit d2c6f5b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

omero_figure/scripts/omero/figure_scripts/Figure_To_Pdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def draw_arrow(self, shape):
413413
g = float(rgb[1]) / 255
414414
b = float(rgb[2]) / 255
415415
self.canvas.setStrokeColorRGB(r, g, b)
416-
self.canvas.setFillColorRGB(r, g, b)
416+
self.canvas.setFillColorRGB(r, g, b, alpha=1)
417417

418418
head_size = (stroke_width * 4) + 5
419419
dx = x2 - x1

0 commit comments

Comments
 (0)