Clean repository-owned GDScript warnings

This commit is contained in:
Alexander Sellite 2026-08-09 13:31:30 -04:00
parent ff536e62a6
commit 1284619079
17 changed files with 60 additions and 74 deletions

View file

@ -93,14 +93,14 @@ func _initialize_motion() -> void:
_set_visual_y(_target_y())
func _on_toggled(pressed: bool) -> void:
if _selected and not pressed:
func _on_toggled(is_pressed: bool) -> void:
if _selected and not is_pressed:
# A selected organizer tab is a page marker, not a collapsible toggle.
# Restore without another signal before any lower-state frame is drawn.
set_pressed_no_signal(true)
refresh_state(false)
return
_selected = pressed
_selected = is_pressed
refresh_state()