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, 3 insertions, 3 deletions
diff --git a/scene/gui/graph_node.h b/scene/gui/graph_node.h
index a0610b37fb..71cc322baa 100644
--- a/scene/gui/graph_node.h
+++ b/scene/gui/graph_node.h
@@ -62,9 +62,9 @@ class GraphNode : public GraphElement {
};
struct _MinSizeCache {
- int min_size;
- bool will_stretch;
- int final_size;
+ int min_size = 0;
+ bool will_stretch = false;
+ int final_size = 0;
};
HBoxContainer *titlebar_hbox = nullptr;