From fbd840a072aa226254ae7900d40d0813ed0e54ba Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Wed, 23 Jul 2014 12:47:41 -0400 Subject: [PATCH] Remove check on FTE in Expanded, don't set FTE in FTETransform --- openbr/plugins/meta.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/openbr/plugins/meta.cpp b/openbr/plugins/meta.cpp index c3777e3..4e72efe 100644 --- a/openbr/plugins/meta.cpp +++ b/openbr/plugins/meta.cpp @@ -39,7 +39,6 @@ static TemplateList Expanded(const TemplateList &templates) continue; } - const bool fte = t.file.get("FTE"); const QList points = t.file.points(); const QList rects = t.file.rects(); if (points.size() % t.size() != 0) qFatal("Uneven point count."); @@ -48,11 +47,9 @@ static TemplateList Expanded(const TemplateList &templates) const int rectStep = rects.size() / t.size(); for (int i=0; iobjectName(), val); - dst.file.set("FTE", (val < min) || (val > max)); + dst.file.set("PossibleFTE", (val < min) || (val > max)); } }; -- libgit2 0.21.4