mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
Check whether the confirmed signal is already connected in the add folder dialog.
This commit is contained in:
parent
8b486e156b
commit
1ee8220992
@ -9,7 +9,8 @@ var _module = null
|
||||
signal folders_created
|
||||
|
||||
func _enter_tree():
|
||||
connect("confirmed", self, "on_confirmed")
|
||||
if !is_connected("confirmed", self, "on_confirmed"):
|
||||
connect("confirmed", self, "on_confirmed")
|
||||
|
||||
func setup() -> void:
|
||||
var entry_container : Control = $ScrollContainer/VBoxContainer
|
||||
|
Loading…
Reference in New Issue
Block a user