diff options
author | Tomasz Chabora <kobewi4e@gmail.com> | 2020-04-03 17:33:53 +0200 |
---|---|---|
committer | Tomasz Chabora <kobewi4e@gmail.com> | 2020-04-03 17:33:53 +0200 |
commit | 16cbfcf0debdc7762b21a6ca625ab7b4d7ef2dbe (patch) | |
tree | 4163f68617d5f9dbe2137cb65579a38a3cad061c /scene/main | |
parent | aeb95ef006109cbebc1a7d1e15f09e509c864583 (diff) |
Add the missing argument in files_dropped signal
Diffstat (limited to 'scene/main')
-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 45982e0e93..19954299de 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -909,7 +909,7 @@ void Window::_window_input_text(const String &p_text) { input_text(p_text); } void Window::_window_drop_files(const Vector<String> &p_files) { - emit_signal("files_dropped", p_files); + emit_signal("files_dropped", p_files, current_screen); } Viewport *Window::get_parent_viewport() const { |