logic: Added namespaces to overview and fixed namespace activation
This commit is contained in:
@@ -46,6 +46,7 @@ QtGraphNode::QtGraphNode()
|
||||
: m_undefinedRect(nullptr)
|
||||
, m_icon(nullptr)
|
||||
, m_isActive(false)
|
||||
, m_multipleActive(false)
|
||||
, m_isHovering(false)
|
||||
{
|
||||
this->setPen(QPen(Qt::transparent));
|
||||
@@ -186,6 +187,11 @@ void QtGraphNode::setIsActive(bool isActive)
|
||||
updateStyle();
|
||||
}
|
||||
|
||||
void QtGraphNode::setMultipleActive(bool multipleActive)
|
||||
{
|
||||
m_multipleActive = multipleActive;
|
||||
}
|
||||
|
||||
std::string QtGraphNode::getName() const
|
||||
{
|
||||
return m_text->text().toStdString();
|
||||
|
||||
Reference in New Issue
Block a user