diff options
author | Yuri Sizov <yuris@humnom.net> | 2021-11-08 23:53:41 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2022-02-10 20:29:34 +0300 |
commit | 107b6f299cda3f8b63432930f19cdd9bc24fb6dc (patch) | |
tree | 24026b11ed93dea43d86c16544e2ac40ec030517 /scene/gui/panel_container.h | |
parent | 242c636a63ac2d8b002ace37388dce9273a9048a (diff) | |
download | redot-engine-107b6f299cda3f8b63432930f19cdd9bc24fb6dc.tar.gz |
Reorganize inspector layout workflow for Control nodes
Diffstat (limited to 'scene/gui/panel_container.h')
-rw-r--r-- | scene/gui/panel_container.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/gui/panel_container.h b/scene/gui/panel_container.h index a5ff74cebb..8f07ce38eb 100644 --- a/scene/gui/panel_container.h +++ b/scene/gui/panel_container.h @@ -42,6 +42,9 @@ protected: public: virtual Size2 get_minimum_size() const override; + virtual Vector<int> get_allowed_size_flags_horizontal() const override; + virtual Vector<int> get_allowed_size_flags_vertical() const override; + PanelContainer(); }; |