fix: harden recovery flow and clean diagnostics

This commit is contained in:
Alexander Sellite 2026-09-01 07:44:01 -04:00
parent 0158b0215f
commit ff78710303
64 changed files with 1163 additions and 418 deletions

View file

@ -565,7 +565,7 @@ func _popup_item_height(popup: PopupMenu, index: int) -> float:
popup.get_theme_font_size(&"font_size")
)
var icon: Texture2D = popup.get_item_icon(index)
var icon_height: float = icon.get_height() if icon != null else 0.0
var icon_height: float = float(icon.get_height()) if icon != null else 0.0
return maxf(font_height, icon_height) + vertical_separation