diff --git a/toonz/sources/toonzqt/schematicnode.cpp b/toonz/sources/toonzqt/schematicnode.cpp index 81713805..bb1434a3 100644 --- a/toonz/sources/toonzqt/schematicnode.cpp +++ b/toonz/sources/toonzqt/schematicnode.cpp @@ -33,7 +33,10 @@ //======================================================== SchematicName::SchematicName(QGraphicsItem *parent, double width, double height) - : QGraphicsTextItem("", parent), m_width(width), m_height(height) { + : QGraphicsTextItem("", parent) + , m_width(width) + , m_height(height) + , m_noAllSelect(false) { setFlag(QGraphicsItem::ItemIsSelectable, true); setFlag(QGraphicsItem::ItemIsFocusable, true); setTextInteractionFlags(Qt::TextEditorInteraction);