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
path: root/source
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2022-07-25 13:27:45 +0300
committerJacques Lucke <jacques@blender.org>2022-07-25 13:27:45 +0300
commit2c81b4d4cf758ec39ea02f0fe1e427d5188385b7 (patch)
tree1cbc829b651a20063632b1be921c246f6020fdf8 /source
parent5feb3541f459d916202b705c2e9c62f5778e182b (diff)
Fix T99880: no node timing for frames in node groups
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_node/node_draw.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_draw.cc b/source/blender/editors/space_node/node_draw.cc
index 9b8009cc7c0..c74cd58d8fb 100644
--- a/source/blender/editors/space_node/node_draw.cc
+++ b/source/blender/editors/space_node/node_draw.cc
@@ -1713,7 +1713,7 @@ static std::string node_get_execution_time_label(const SpaceNode &snode, const b
{
int node_count = 0;
std::chrono::microseconds exec_time = node_get_execution_time(
- *snode.nodetree, node, snode, node_count);
+ *snode.edittree, node, snode, node_count);
if (node_count == 0) {
return std::string("");