Merge pull request #22474 from groud/fix_drag_drop_file_list

Fixes drag & drop in the file list
This commit is contained in:
Rémi Verschelde 2018-09-27 14:12:43 +02:00 committed by GitHub
commit cb5a62903f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1859,7 +1859,7 @@ void FileSystemDock::_get_drag_target_folder(String &target, bool &target_favori
}
String ltarget = files->get_item_metadata(pos);
target = ltarget.ends_with("/") ? target : path;
target = ltarget.ends_with("/") ? ltarget : path;
return;
}