Skip to content

Commit

Permalink
group node painter fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jchanvfx committed Apr 16, 2024
1 parent a900a4b commit af969f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NodeGraphQt/qgraphics/node_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _paint_vertical(self, painter, option, widget):
poly.append(rect_2.bottomLeft())
poly.append(rect_1.bottomLeft())

painter.setBrush(QtGui.QColor(*self.color).dark(180))
painter.setBrush(QtGui.QColor(*self.color).darker(180))
painter.drawRect(rect_1)
painter.drawPolygon(poly)
painter.setBrush(QtGui.QColor(*self.color))
Expand Down

0 comments on commit af969f6

Please sign in to comment.