diff options
author | brenda-br | 2023-02-12 15:43:20 +0530 |
---|---|---|
committer | brenda-br | 2023-02-12 15:43:20 +0530 |
commit | e2b179ce145fc0882de06ea8cfe041f6162d4b11 (patch) | |
tree | 844a6d5f8a80213906335ffd981cf27cdf575cee /Graphics.py | |
parent | 383c19228c83802c72ba7155a0d43cef2c4cebe4 (diff) | |
download | Chemical-Simulator-GUI-e2b179ce145fc0882de06ea8cfe041f6162d4b11.tar.gz Chemical-Simulator-GUI-e2b179ce145fc0882de06ea8cfe041f6162d4b11.tar.bz2 Chemical-Simulator-GUI-e2b179ce145fc0882de06ea8cfe041f6162d4b11.zip |
Node Socket Color Change
Diffstat (limited to 'Graphics.py')
-rw-r--r-- | Graphics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics.py b/Graphics.py index 8e3a24c..4387daa 100644 --- a/Graphics.py +++ b/Graphics.py @@ -422,7 +422,7 @@ class NodeSocket(QtWidgets.QGraphicsItem): def show(self): # set pen to show self.pen = QPen(QtGui.QColor(0,70,70,220), 1, Qt.SolidLine) - self.brush = QBrush(QtGui.QColor(33,225,162,255)) + self.brush = QBrush(QtGui.QColor(140,199,198,255)) def hide(self): # set pen to transparent |