You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Synchronize parameter names in definition and declaration
Fixes #10244.
This commit is contained in:
committed by
Rémi Verschelde
parent
b1ecaaa22b
commit
00f6c85928
@@ -548,11 +548,11 @@ Ref<Texture> TabContainer::get_tab_icon(int p_tab) const {
|
||||
return Ref<Texture>();
|
||||
}
|
||||
|
||||
void TabContainer::set_tab_disabled(int p_tab, bool p_enabled) {
|
||||
void TabContainer::set_tab_disabled(int p_tab, bool p_disabled) {
|
||||
|
||||
Control *child = _get_tab(p_tab);
|
||||
ERR_FAIL_COND(!child);
|
||||
child->set_meta("_tab_disabled", p_enabled);
|
||||
child->set_meta("_tab_disabled", p_disabled);
|
||||
update();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user