diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-04-07 09:18:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 09:18:38 +0200 |
commit | 026ec44b02386f26f8b8e793c823c84ef4f575f7 (patch) | |
tree | 8b33601f67c15c064a620b817df696768a231718 | |
parent | 8c8e3ba91864cd5f8a6c11179b04df2e7838bc26 (diff) | |
parent | 16cbfcf0debdc7762b21a6ca625ab7b4d7ef2dbe (diff) |
Merge pull request #37551 from KoBeWi/found_your_screen
Add the missing argument in files_dropped signal
-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 { |