diff options
| author | 2020-06-12 20:27:57 +0200 | |
|---|---|---|
| committer | 2020-06-12 20:27:57 +0200 | |
| commit | 9d322992515305edfd34f72a77fff1793c7325d5 (patch) | |
| tree | 2e78e132b610192664951ccc1503a4905de8e58d /node | |
| parent | 3d1abaab925f635f242cd26e661324ab05d1b09a (diff) | |
| download | OneRoll-9d322992515305edfd34f72a77fff1793c7325d5.tar.gz OneRoll-9d322992515305edfd34f72a77fff1793c7325d5.zip | |
Fix error with paint node.
Diffstat (limited to 'node')
| -rw-r--r-- | node/paintnode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/paintnode.cpp b/node/paintnode.cpp index 0cd4e10..c0c7079 100644 --- a/node/paintnode.cpp +++ b/node/paintnode.cpp @@ -86,7 +86,7 @@ void PainterNode::run(ExecutionNode* previous) } if(nullptr != m_nextNode) { - m_nextNode->run(previous); + m_nextNode->run(this); } } Result* PainterNode::getResult() |