CLI2: Display filter footnote only if some filter token is present

This commit is contained in:
Tomas Babej 2015-09-29 07:20:58 +02:00 committed by Paul Beckingham
parent fff27ffabe
commit 830a8c6ec8

View file

@ -678,7 +678,8 @@ void CLI2::prepareFilter ()
}
}
context.footnote (std::string (STRING_COLUMN_LABEL_FILTER) + ": " + combined);
if (combined.size ())
context.footnote (std::string (STRING_COLUMN_LABEL_FILTER) + ": " + combined);
}
}