diff options
author | Giganzo <158825920+Giganzo@users.noreply.github.com> | 2024-09-01 23:53:15 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-10-20 13:26:45 +0200 |
commit | 549bffdcbc4cd43e03b1f6300f087e6d5816397c (patch) | |
tree | a1fdd808261fee924e7e05f885133d5b27d9f75c /editor/plugins/control_editor_plugin.cpp | |
parent | 61598c5c88d95b96811d386cb20d714c35f4c6d7 (diff) | |
download | redot-engine-549bffdcbc4cd43e03b1f6300f087e6d5816397c.tar.gz |
Fix PopupPanel menu style
Diffstat (limited to 'editor/plugins/control_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/control_editor_plugin.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/plugins/control_editor_plugin.cpp b/editor/plugins/control_editor_plugin.cpp index 5c5f236ff3..7fbdc73b6d 100644 --- a/editor/plugins/control_editor_plugin.cpp +++ b/editor/plugins/control_editor_plugin.cpp @@ -534,7 +534,6 @@ ControlEditorPopupButton::ControlEditorPopupButton() { set_focus_mode(FOCUS_NONE); popup_panel = memnew(PopupPanel); - popup_panel->set_theme_type_variation("ControlEditorPopupPanel"); add_child(popup_panel); popup_panel->connect("about_to_popup", callable_mp(this, &ControlEditorPopupButton::_popup_visibility_changed).bind(true)); popup_panel->connect("popup_hide", callable_mp(this, &ControlEditorPopupButton::_popup_visibility_changed).bind(false)); |