From 84b1921b360ab06d27b7b60477a9d23bfb783d9c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 23 Jul 2015 22:32:48 -0400 Subject: [PATCH] CmdInfo: Fixed bug that caused UDA orphans to not be displayed --- src/commands/CmdInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdInfo.cpp b/src/commands/CmdInfo.cpp index ee11a3801..a69fdb627 100644 --- a/src/commands/CmdInfo.cpp +++ b/src/commands/CmdInfo.cpp @@ -388,7 +388,7 @@ int CmdInfo::execute (std::string& output) for (auto& att : all) { if (att.substr (0, 11) != "annotation_" && - context.columns.find (att) == context.columns.end ()) + ! context.columns[att]) { row = view.addRow (); view.set (row, 0, "[" + att);