fix: harden recovery flow and clean diagnostics
This commit is contained in:
parent
0158b0215f
commit
ff78710303
64 changed files with 1163 additions and 418 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue