Merge pull request #20227 from volzhs/fix-copy-ttf

Fix copying ttf, otf by DND to editor
This commit is contained in:
Rémi Verschelde 2018-07-18 08:34:39 +02:00 committed by GitHub
commit 2c63d02f24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4189,7 +4189,7 @@ void EditorNode::_dropped_files(const Vector<String> &p_files, int p_screen) {
for (int i = 0; i < p_files.size(); i++) {
String from = p_files[i];
if (!ResourceFormatImporter::get_singleton()->can_be_imported(from) && (just_copy.find(from.get_extension().to_lower()) != -1)) {
if (!ResourceFormatImporter::get_singleton()->can_be_imported(from) && (just_copy.find(from.get_extension().to_lower()) == -1)) {
continue;
}
String to = to_path.plus_file(from.get_file());