mirror of
https://github.com/godotengine/godot.git
synced 2025-10-27 11:44:21 +00:00
Signals: Port more uses of connect_compat
Those were problematic as they call a method of their parent class, but callable_mp does not allow that unless it's public. To solve it, we declare a local class that calls the parent class' method, which now needs to be protected to be accessible in the derived class.
This commit is contained in:
parent
b8f08b42e7
commit
09a6a2d8f8
19 changed files with 79 additions and 41 deletions
|
|
@ -561,6 +561,10 @@ void CreateDialog::_item_selected() {
|
|||
get_ok()->set_disabled(false);
|
||||
}
|
||||
|
||||
void CreateDialog::_hide_requested() {
|
||||
_closed(); // From WindowDialog.
|
||||
}
|
||||
|
||||
void CreateDialog::_favorite_toggled() {
|
||||
|
||||
TreeItem *item = search_options->get_selected();
|
||||
|
|
@ -804,7 +808,7 @@ CreateDialog::CreateDialog() {
|
|||
|
||||
help_bit = memnew(EditorHelpBit);
|
||||
vbc->add_margin_child(TTR("Description:"), help_bit);
|
||||
help_bit->connect_compat("request_hide", this, "_closed");
|
||||
help_bit->connect("request_hide", callable_mp(this, &CreateDialog::_hide_requested));
|
||||
|
||||
type_blacklist.insert("PluginScript"); // PluginScript must be initialized before use, which is not possible here
|
||||
type_blacklist.insert("ScriptCreateDialog"); // This is an exposed editor Node that doesn't have an Editor prefix.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue