aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/Menu/LobbyMenu/LobbyPanelButton.gd
diff options
context:
space:
mode:
Diffstat (limited to 'game/src/Game/Menu/LobbyMenu/LobbyPanelButton.gd')
-rw-r--r--game/src/Game/Menu/LobbyMenu/LobbyPanelButton.gd6
1 files changed, 2 insertions, 4 deletions
diff --git a/game/src/Game/Menu/LobbyMenu/LobbyPanelButton.gd b/game/src/Game/Menu/LobbyMenu/LobbyPanelButton.gd
index 646c694..b50ee28 100644
--- a/game/src/Game/Menu/LobbyMenu/LobbyPanelButton.gd
+++ b/game/src/Game/Menu/LobbyMenu/LobbyPanelButton.gd
@@ -29,8 +29,7 @@ func set_text(value : StringName) -> void:
func _get_minimum_size() -> Vector2:
var result := Vector2()
- for child in get_children():
- child = child as Control
+ for child : Control in get_children():
if child == null or not child.visible:
continue
if child.top_level:
@@ -82,8 +81,7 @@ func _notification(what : int) -> void:
_size -= style.get_minimum_size()
offset += style.get_offset()
- for child in get_children():
- child = child as Control
+ for child : Control in get_children():
if child == null or not child.is_visible_in_tree() or child.top_level:
continue