diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-07 03:39:06 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-07 03:39:06 +0200 |
commit | a97f429c6a0ead9eb084efbd276bd999bf9c9a7f (patch) | |
tree | 55f259924422d8611c070c935313705f04003530 /client/menu/settings/settings_root.gd | |
parent | 78b7ec6ef9e343731cc496f11c76a0a3e5f37220 (diff) | |
download | hurrycurry-a97f429c6a0ead9eb084efbd276bd999bf9c9a7f.tar hurrycurry-a97f429c6a0ead9eb084efbd276bd999bf9c9a7f.tar.bz2 hurrycurry-a97f429c6a0ead9eb084efbd276bd999bf9c9a7f.tar.zst |
_update_row -> create_row
Diffstat (limited to 'client/menu/settings/settings_root.gd')
-rw-r--r-- | client/menu/settings/settings_root.gd | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/menu/settings/settings_root.gd b/client/menu/settings/settings_root.gd index d7dad1f7..1beb0d9b 100644 --- a/client/menu/settings/settings_root.gd +++ b/client/menu/settings/settings_root.gd @@ -26,9 +26,7 @@ func _init(new_children: Array): func create_row(): var row = TabContainer.new() row.size_flags_vertical = Control.SIZE_EXPAND_FILL - for r in children: - r._update_row() - row.add_child(r.row) + for r in children: row.add_child(r.create_row()) return row func check(): |