Skip to content

Commit

Permalink
adjusted node ui size
Browse files Browse the repository at this point in the history
  • Loading branch information
gvrocksnow authored and Naros committed Sep 17, 2023
1 parent eacbb2e commit db147c4
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func create_ui(attributes: OrchestratorDictionary, scene_node: Node) -> void:

var input_event_action_name = LineEdit.new()
input_event_action_name.size_flags_horizontal = Control.SIZE_EXPAND_FILL
input_event_action_name.custom_minimum_size = Vector2(256, 0)
input_event_action_name.custom_minimum_size = Vector2(128, 0)
input_event_action_name.text_changed.connect(func(new_value: String): _action_name = new_value)
input_event_action_name.text = _action_name

Expand All @@ -46,4 +46,3 @@ func create_ui(attributes: OrchestratorDictionary, scene_node: Node) -> void:
margin.add_child(row)
scene_node.add_child(margin)


0 comments on commit db147c4

Please sign in to comment.