From 7b5006c0c1994655ccc8f9c6c4d883cd687d062a Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Sat, 1 Nov 2014 12:21:16 -0400 Subject: [PATCH] .ut should also count as a pre-enrolled format in retrieveOrEnroll --- openbr/core/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/core/core.cpp b/openbr/core/core.cpp index 45f6d41..795bffc 100644 --- a/openbr/core/core.cpp +++ b/openbr/core/core.cpp @@ -242,7 +242,7 @@ struct AlgorithmCore void retrieveOrEnroll(const File &file, QScopedPointer &gallery, FileList &galleryFiles) { - if (!file.getBool("enroll") && (QStringList() << "gal" << "mem" << "template").contains(file.suffix())) { + if (!file.getBool("enroll") && (QStringList() << "gal" << "mem" << "template" << "ut").contains(file.suffix())) { // Retrieve it gallery.reset(Gallery::make(file)); galleryFiles = gallery->files(); -- libgit2 0.21.4