summaryrefslogtreecommitdiffstats
path: root/scene/gui/graph_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/gui/graph_node.h')
-rw-r--r--scene/gui/graph_node.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/scene/gui/graph_node.h b/scene/gui/graph_node.h
index e6ecc3d89b..7ba2e6db94 100644
--- a/scene/gui/graph_node.h
+++ b/scene/gui/graph_node.h
@@ -37,6 +37,12 @@
class GraphNode : public Container {
GDCLASS(GraphNode, Container);
+ struct _MinSizeCache {
+ int min_size;
+ bool will_stretch;
+ int final_size;
+ };
+
public:
enum Overlay {
OVERLAY_DISABLED,