diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-11-30 18:16:49 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-11-30 18:16:49 +0100 |
commit | 72959d1d8b387adae0f0ba94365528a6a747ff64 (patch) | |
tree | 46d55cc47a511bba8a59d8616f05e6b12592a44c /src/gui/curses/gui-curses-chat.c | |
parent | b7abb77b4d55dea1814b1f62c3a01f9e0f36f55e (diff) | |
download | weechat-72959d1d8b387adae0f0ba94365528a6a747ff64.zip |
core: fix display of combining chars (patch from Nei) (bug #37775)
Diffstat (limited to 'src/gui/curses/gui-curses-chat.c')
-rw-r--r-- | src/gui/curses/gui-curses-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/curses/gui-curses-chat.c b/src/gui/curses/gui-curses-chat.c index 838da8c14..6d7828326 100644 --- a/src/gui/curses/gui-curses-chat.c +++ b/src/gui/curses/gui-curses-chat.c @@ -391,7 +391,7 @@ gui_chat_display_word_raw (struct t_gui_window *window, struct t_gui_line *line, { return chars_displayed; } - if (display_char && (size_on_screen > 0)) + if (display_char && (size_on_screen >= 0)) { if (!simulate) { |