Fixes connect bug (via context menu) for custom nodes

This commit is contained in:
dsc 2021-05-03 01:03:21 +02:00
parent 096b28318c
commit c3e9fbb25a
1 changed files with 1 additions and 6 deletions

View File

@ -80,12 +80,7 @@ void NodeWidget::showContextMenu(const QPoint &pos, const WowletNode &node) {
}
void NodeWidget::onContextConnect() {
QObject *obj = sender();
if (obj == ui->customView)
m_activeView = ui->customView;
else
m_activeView = ui->wsView;
//QObject *obj = sender();
WowletNode node = this->selectedNode();
if (!node.full.isEmpty())
emit connectToNode(node);