Skip to content

Commit

Permalink
[ui] GraphEditor: use dash lines for input/input edges
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan committed Dec 18, 2020
1 parent d291fcc commit b75ccdb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions meshroom/ui/qml/GraphEditor/Edge.qml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Shape {
startY: root.startY
fillColor: "transparent"
strokeColor: "#3E3E3E"
strokeStyle: edge != undefined && ((edge.src != undefined && edge.src.isOutput) || edge.dst == undefined) ? ShapePath.SolidLine : ShapePath.DashLine
dashPattern: [4, 4]
capStyle: ShapePath.RoundCap
strokeWidth: 1

Expand Down

0 comments on commit b75ccdb

Please sign in to comment.