From 0ca4f874eb8152ed63d9069409c564029fb380a7 Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Tue, 30 Jul 2013 16:12:07 -0400 Subject: [PATCH] Rank output works with crossvalidation --- openbr/plugins/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/plugins/gui.cpp b/openbr/plugins/gui.cpp index c5ca8a0..569412b 100644 --- a/openbr/plugins/gui.cpp +++ b/openbr/plugins/gui.cpp @@ -215,7 +215,7 @@ public: foreach (const QString & s, keys) { if (s.compare("name", Qt::CaseInsensitive) == 0) { - newTitle = newTitle + s + ": " + file.name + " "; + newTitle = newTitle + s + ": " + t.file.name + " "; } else if (t.file.contains(s)) { QString out = t.file.get(s); newTitle = newTitle + s + ": " + out + " "; -- libgit2 0.21.4