From 6956df1652c51eaddf5cd882f7fcde6571b240da Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Tue, 21 Feb 2017 08:50:57 +0100 Subject: [PATCH] Fixing an issue with word wrapping of strings containing dashes. Strings do get wrapper correctly at dashes but the space to print the actual space has not been taken account of. This has now been fixed. --- src/gdisp/mcufont/mf_wordwrap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gdisp/mcufont/mf_wordwrap.c b/src/gdisp/mcufont/mf_wordwrap.c index 4c563c3f..d89b567d 100644 --- a/src/gdisp/mcufont/mf_wordwrap.c +++ b/src/gdisp/mcufont/mf_wordwrap.c @@ -52,6 +52,8 @@ static bool get_wordlen(const struct mf_font_s *font, mf_str *text, if (c == ' ') result->space += mf_character_width(font, c); + else if (c == '-') + result->space += mf_character_width(font, '-'); else if (c == '\t') result->space += mf_character_width(font, 'm') * MF_TABSIZE; else if (c == '\n')