fix(label): Add missing character

This commit is contained in:
Michael Carlberg 2017-01-17 15:38:28 +01:00
parent e0e9cae2eb
commit 9e3a7cf06c

View File

@ -171,7 +171,7 @@ namespace drawtypes {
// ignore false positives
// lemonbar tags %{...}
// trailing percentage signs %token%%
if (token_str.find_first_of("abdefghijklmnopqrstuvwxyz") != 1) {
if (token_str.find_first_of("abcdefghijklmnopqrstuvwxyz") != 1) {
line.erase(0, end);
continue;
}