Minor fix to dialog boxes.
This commit is contained in:
parent
5dd6a03572
commit
619a7cfdd6
1 changed files with 3 additions and 3 deletions
|
@ -13,17 +13,17 @@ func _ready():
|
|||
|
||||
|
||||
func _alertClosed():
|
||||
_dialog.queue_free
|
||||
_dialog.queue_free()
|
||||
emit_signal("_dialog_closed")
|
||||
|
||||
|
||||
func _confirmAccepted():
|
||||
_dialog.queue_free
|
||||
_dialog.queue_free()
|
||||
_result = true
|
||||
emit_signal("_dialog_closed")
|
||||
|
||||
func _confirmCanceled():
|
||||
_dialog.queue_free
|
||||
_dialog.queue_free()
|
||||
_result = false
|
||||
emit_signal("_dialog_closed")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue