diff options
Diffstat (limited to 'src/window.cpp')
-rw-r--r-- | src/window.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/window.cpp b/src/window.cpp index f67c02a8..c50e435d 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -1338,8 +1338,9 @@ Window &Window::operator<<(const char *s) Window &Window::operator<<(char c) { - // waddchr doesn't display non-ascii multibyte characters properly - waddnstr(m_window, &c, 1); + // the following causes problems: https://github.com/arybczak/ncmpcpp/issues/21 + // waddnstr(m_window, &c, 1); + wprintw(m_window, "%c", c); return *this; } |