Merge pull request #37551 from KoBeWi/found_your_screen

Add the missing argument in files_dropped signal
This commit is contained in:
Rémi Verschelde 2020-04-07 09:18:38 +02:00 committed by GitHub
commit 026ec44b02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {