diff options
Diffstat (limited to 'src/render.cc')
-rw-r--r-- | src/render.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render.cc b/src/render.cc index 54eb9c7..b85c446 100644 --- a/src/render.cc +++ b/src/render.cc @@ -81,7 +81,7 @@ std::string RenderNode::toString() const { std::stringstream stream; - stream << "render(convexity = " << convexity << ")"; + stream << this->name() << "(convexity = " << convexity << ")"; return stream.str(); } |