Hi,
Since 4.4, the automatic navigation paths from control to control is weird. (Changed a lot from 4.3)
Also, manually settings focus neighbor do not always guarantee behaviour.
Am I the only one experiencing this ?
Hi,
Since 4.4, the automatic navigation paths from control to control is weird. (Changed a lot from 4.3)
Also, manually settings focus neighbor do not always guarantee behaviour.
Am I the only one experiencing this ?
Hi,
I found that when submitting text through a line edit switches it out of edit mode and I needed to enable the editing_toggled signal on the control. Only real issue I’ve found, other than the always adding .0 to a float when converting to a string even if it has no floating points. Annoying…
func _on_line_edit_editing_toggled(toggled_on: bool) -> void:
if editor_mode == 3 and not toggled_on:
line_edit.edit()
Kindly
Ryn