Issue #39. Fixed some edges not being drawn due to case-sensitivity.

This commit is contained in:
WrinklyNinja
2013-08-08 20:54:50 +01:00
parent c481147d24
commit ddcc4e411e
+2 -2
View File
@@ -93,8 +93,8 @@ namespace boss {
boost::tie(vit, vit_end) = boost::vertices(graph);
for (vit, vit_end; vit != vit_end; ++vit) {
// if (boost::iequals(graph[*vit]->Name(), name)) {
if (graph[*vit]->Name() == name) {
if (boost::iequals(graph[*vit]->Name(), name)) {
// if (graph[*vit]->Name() == name) {
vertex = *vit;
return true;
}