diff options
-rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c index 7b1e339..11ee426 100644 --- a/ui.c +++ b/ui.c @@ -234,7 +234,7 @@ static void styleAdd(WINDOW *win, const char *str) { if (*str == ' ') { getyx(win, y, x); const char *word = &str[strspn(str, " ")]; - if (width - x - 1 < wordWidth(word)) { + if (width - x - 1 <= wordWidth(word)) { waddch(win, '\n'); str = word; } |