Skip to content

Commit af969f6

Browse files
committed
group node painter fix.
1 parent a900a4b commit af969f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NodeGraphQt/qgraphics/node_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def _paint_vertical(self, painter, option, widget):
122122
poly.append(rect_2.bottomLeft())
123123
poly.append(rect_1.bottomLeft())
124124

125-
painter.setBrush(QtGui.QColor(*self.color).dark(180))
125+
painter.setBrush(QtGui.QColor(*self.color).darker(180))
126126
painter.drawRect(rect_1)
127127
painter.drawPolygon(poly)
128128
painter.setBrush(QtGui.QColor(*self.color))

0 commit comments

Comments
 (0)