From 9e3a7cf06c17175e649692908c957dfdc0a8fab7 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 17 Jan 2017 15:38:28 +0100 Subject: [PATCH] fix(label): Add missing character --- src/drawtypes/label.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drawtypes/label.cpp b/src/drawtypes/label.cpp index 51dde741..4bc78190 100644 --- a/src/drawtypes/label.cpp +++ b/src/drawtypes/label.cpp @@ -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; }