We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13b7143 commit d2c96a4Copy full SHA for d2c96a4
Sources/NodeUIEngine/NUIE_NodeEditor.cpp
@@ -131,6 +131,12 @@ void NodeEditor::ConnectOutputSlotToInputSlot (const UIOutputSlotConstPtr& outpu
131
Update ();
132
}
133
134
+void NodeEditor::InvalidateAllDrawings ()
135
+{
136
+ uiManager.InvalidateAllDrawings ();
137
+ Update ();
138
+}
139
+
140
Point NodeEditor::ViewToModel (const Point& viewPoint) const
141
{
142
const ViewBox& viewBox = uiManager.GetViewBox ();
Sources/NodeUIEngine/NUIE_NodeEditor.hpp
@@ -44,6 +44,7 @@ class NodeEditor
44
45
void AddNode (const UINodePtr& uiNode);
46
void ConnectOutputSlotToInputSlot (const UIOutputSlotConstPtr& outputSlot, const UIInputSlotConstPtr& inputSlot);
47
+ void InvalidateAllDrawings ();
48
49
Point ViewToModel (const Point& viewPoint) const;
50
void AlignToWindow ();
0 commit comments