From 2ed051bb41b00e2d86da2010267b64be1dc569ca Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr> Date: Mon, 3 Apr 2023 15:11:48 +0200 Subject: [PATCH] network: Minor change. --- src/View/Network/GraphWidget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/View/Network/GraphWidget.py b/src/View/Network/GraphWidget.py index 8692fb91..e6d9d9c9 100644 --- a/src/View/Network/GraphWidget.py +++ b/src/View/Network/GraphWidget.py @@ -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 -- GitLab