Tue, 28 Sep 2021 00:21:09 +0300
Update document tab label after saving
#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(); }