feat: drag connect nodes

This commit is contained in:
parker
2025-06-23 15:48:53 +01:00
parent 74da83fdfa
commit 0ad623407a
5 changed files with 30 additions and 1 deletions

View File

@@ -75,7 +75,7 @@ SocketGraphic* NodeGraphic::getOutput(int indx) const
QRectF NodeGraphic::boundingRect() const
{
QRectF boundRect = bodyRect_;
float padding = 10;
float padding = 0;
boundRect.adjust(-padding, -padding, padding, padding);
return boundRect;
}