Wed, 09 Mar 2022 13:01:50 +0200
Fix performance issues in Model::find
#include <QFont> #include "comment.h" QFont ldraw::Comment::textRepresentationFont() const { QFont font; font.setItalic(true); return font; } ldraw::Object::Type ldraw::Comment::typeIdentifier() const { return Type::Comment; } QString ldraw::Comment::toLDrawCode() const { return ("0 // " + this->storedText).trimmed(); }