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:
parent
da8bc0d057
commit
cae4f39a4b
1 changed files with 3 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue