From 69cde09e53d307b147a8adaf08506c91e8b6d269 Mon Sep 17 00:00:00 2001 From: Martin Laasmaa Date: Fri, 16 Jan 2026 10:26:25 +0200 Subject: [PATCH] Changing alpha value --- src/gui/widgets/annotation_canvas_widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/widgets/annotation_canvas_widget.py b/src/gui/widgets/annotation_canvas_widget.py index 0611475..930279d 100644 --- a/src/gui/widgets/annotation_canvas_widget.py +++ b/src/gui/widgets/annotation_canvas_widget.py @@ -825,7 +825,7 @@ class AnnotationCanvasWidget(QWidget): self._add_polyline(img_coords, pen_color, width, annotation_id=annotation_id) # Store in all_strokes for consistency (uses normalized coordinates) - self.all_strokes.append({"points": polyline, "color": color, "alpha": 128, "width": width}) + self.all_strokes.append({"points": polyline, "color": color, "alpha": 255, "width": width}) logger.debug(f"Drew saved polyline with {len(polyline)} points in color {color}")