Commit 2ed051bb authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

network: Minor change.

Showing with 2 additions and 2 deletions
+2 -2
......@@ -52,7 +52,7 @@ class NodeItem(QGraphicsItem):
# Select color in function of node position in graph and
# status
color = Qt.yellow
color = Qt.blue
if self.graph.selected_new_edge_src_node() == self:
color = Qt.darkRed
elif self.graph.selected_item() == self:
......@@ -60,7 +60,7 @@ class NodeItem(QGraphicsItem):
elif not self.graph.graph.is_enable_node(self.node):
color = Qt.darkGray
elif self.graph.graph.is_upstream_node(self.node):
color = Qt.blue
color = Qt.yellow
elif self.graph.graph.is_downstream_node(self.node):
color = Qt.green
......
Supports Markdown
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