1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-03-12 22:35:18 +00:00

Hide the splash dialog when dragging and dropping a file

This commit is contained in:
Manolis Papadeas 2021-09-06 15:36:28 +03:00
parent da8bc0d057
commit cae4f39a4b

View file

@ -276,6 +276,9 @@ func _notification(what : int) -> void:
func _on_files_dropped(_files : PoolStringArray, _screen : int) -> void:
OpenSave.handle_loading_files(_files)
var splash_dialog = Global.control.get_node("Dialogs/SplashDialog")
if splash_dialog.visible:
splash_dialog.hide()
func load_last_project() -> void: