diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-04-11 12:52:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 12:52:51 +0200 |
commit | 2ec68599a45231767bb970e7bf06a3bf7ed5fc91 (patch) | |
tree | 67cc9e62050a98a44837e4c4fe6092192757290d /scene/main/window.cpp | |
parent | f44e5dba6ddcbb5df43b86ac507375d0535f6df8 (diff) | |
parent | 63de41b996db09e37816d941506b14753d8ed233 (diff) |
Merge pull request #60111 from KoBeWi/the_files_have_landed
Diffstat (limited to 'scene/main/window.cpp')
-rw-r--r-- | scene/main/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/window.cpp b/scene/main/window.cpp index 2faa107fb4..2858ffba6d 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -981,7 +981,7 @@ void Window::_window_input_text(const String &p_text) { } void Window::_window_drop_files(const Vector<String> &p_files) { - emit_signal(SNAME("files_dropped"), p_files, current_screen); + emit_signal(SNAME("files_dropped"), p_files); } Viewport *Window::get_parent_viewport() const { |