aboutsummaryrefslogtreecommitdiff
path: root/client/menu/settings/settings_root.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-07 03:39:06 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-07 03:39:06 +0200
commita97f429c6a0ead9eb084efbd276bd999bf9c9a7f (patch)
tree55f259924422d8611c070c935313705f04003530 /client/menu/settings/settings_root.gd
parent78b7ec6ef9e343731cc496f11c76a0a3e5f37220 (diff)
downloadhurrycurry-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.gd4
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():