mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-20 12:33:14 +00:00
Fix 3D Shape Edit text field cursor position changing when typing text
This commit is contained in:
parent
e91921e832
commit
cf55332f18
1 changed files with 2 additions and 1 deletions
|
@ -348,7 +348,8 @@ func _set_node_values(to_edit: Object, properties: Dictionary) -> void:
|
|||
elif node is CheckBox:
|
||||
node.pressed = value
|
||||
elif node is LineEdit:
|
||||
node.text = value
|
||||
if node.text != value:
|
||||
node.text = value
|
||||
|
||||
|
||||
func _get_previous_node(node: Node) -> Node:
|
||||
|
|
Loading…
Add table
Reference in a new issue