Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-08-24 15:47:09 +0300
committerJacques Lucke <jacques@blender.org>2021-08-24 15:47:09 +0300
commit85ca4e33a64fcff958c50289d049be40b761b278 (patch)
tree1fe61e4a96e7f1b4620818f794fcba895e486c15
parent3aee13b3495413c4809b6993397ec28a9024bd89 (diff)
-rw-r--r--source/blender/editors/space_node/drawnode.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_node/drawnode.cc b/source/blender/editors/space_node/drawnode.cc
index 732db4a78eb..4a4a12a9e89 100644
--- a/source/blender/editors/space_node/drawnode.cc
+++ b/source/blender/editors/space_node/drawnode.cc
@@ -4281,7 +4281,7 @@ void node_draw_link(View2D *v2d, SpaceNode *snode, bNodeLink *link)
if (link->flag & NODE_LINK_VALID) {
/* special indicated link, on drop-node */
if (link->flag & NODE_LINKFLAG_HILITE) {
- th_col1 = th_col2 = TH_ACTIVE;
+ // th_col1 = th_col2 = TH_ACTIVE;
}
else if (link->flag & NODE_LINK_MUTED) {
th_col1 = th_col2 = TH_REDALERT;
@@ -4289,10 +4289,10 @@ void node_draw_link(View2D *v2d, SpaceNode *snode, bNodeLink *link)
else {
/* Regular link, highlight if connected to selected node. */
if (link->fromnode && link->fromnode->flag & SELECT) {
- th_col1 = TH_EDGE_SELECT;
+ // th_col1 = TH_EDGE_SELECT;
}
if (link->tonode && link->tonode->flag & SELECT) {
- th_col2 = TH_EDGE_SELECT;
+ // th_col2 = TH_EDGE_SELECT;
}
}
}