Fix missing autocompletion for inheriting classes

This commit is contained in:
Micky
2024-01-03 00:13:04 +01:00
parent 07b88600b7
commit ca2f340384
7 changed files with 7 additions and 5 deletions

View File

@@ -205,7 +205,7 @@ void Control::set_root_layout_direction(int p_root_dir) {
void Control::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const {
ERR_READ_THREAD_GUARD;
Node::get_argument_options(p_function, p_idx, r_options);
CanvasItem::get_argument_options(p_function, p_idx, r_options);
if (p_idx == 0) {
List<StringName> sn;