Skip to content
Snippets Groups Projects
Commit e3768960 authored by Tomáš Orviský's avatar Tomáš Orviský
Browse files

DiagramEdge source/target opacity check fix

parent b8160417
Branches
No related merge requests found
...@@ -63,7 +63,7 @@ class DiagramEdge(DiagramObject): ...@@ -63,7 +63,7 @@ class DiagramEdge(DiagramObject):
def redraw(self): def redraw(self):
super().redraw() super().redraw()
if self.source.background_stroke_opacity or self.target.background_stroke_opacity: if self.source.background_stroke_opacity == 0 or self.target.background_stroke_opacity == 0:
return return
always_redraw(self.__line_updater) always_redraw(self.__line_updater)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment