summaryrefslogtreecommitdiffstats
path: root/scene/register_scene_types.cpp
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-06-29 21:13:31 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-08-28 14:26:54 +0200
commit2d2fb3f2e7b0215799797c6d48df9f06f1c0e69d (patch)
tree5ac5b8519e673c63848ec6efd9f59c6d4d32e511 /scene/register_scene_types.cpp
parentf648de1a83cf006dbfdaa075219ad4348628e58f (diff)
downloadredot-engine-2d2fb3f2e7b0215799797c6d48df9f06f1c0e69d.tar.gz
Treat `MenuBar` and `MenuButton` as advanced UI
Diffstat (limited to 'scene/register_scene_types.cpp')
-rw-r--r--scene/register_scene_types.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/register_scene_types.cpp b/scene/register_scene_types.cpp
index aa8ff75c6a..76678e609a 100644
--- a/scene/register_scene_types.cpp
+++ b/scene/register_scene_types.cpp
@@ -402,8 +402,6 @@ void register_scene_types() {
GDREGISTER_CLASS(VSlider);
GDREGISTER_CLASS(Popup);
GDREGISTER_CLASS(PopupPanel);
- GDREGISTER_CLASS(MenuBar);
- GDREGISTER_CLASS(MenuButton);
GDREGISTER_CLASS(CheckBox);
GDREGISTER_CLASS(CheckButton);
GDREGISTER_CLASS(LinkButton);
@@ -458,6 +456,8 @@ void register_scene_types() {
GDREGISTER_CLASS(CodeHighlighter);
GDREGISTER_ABSTRACT_CLASS(TreeItem);
+ GDREGISTER_CLASS(MenuBar);
+ GDREGISTER_CLASS(MenuButton);
GDREGISTER_CLASS(OptionButton);
GDREGISTER_CLASS(SpinBox);
GDREGISTER_CLASS(ColorPicker);