Let ncurses deal with that properly.
[apps/madmutt.git] / lib-ui / sidebar.c
index 8065e55..d5434a9 100644 (file)
@@ -270,12 +270,8 @@ void sidebar_draw_frames (void) {
   SETCOLOR (MT_COLOR_SIDEBAR);
   for (i = 0; i < LINES-1; i++) {
     move (i, SidebarWidth - delim_len);
-    if (option (OPTASCIICHARS))
-      addstr (NONULL (SidebarDelim));
-    else if (!option (OPTASCIICHARS) && !m_strcmp(SidebarDelim, "|"))
+    if (!m_strcmp(SidebarDelim, "|"))
       addch (ACS_VLINE);
-    else if ((Charset_is_utf8) && !m_strcmp(SidebarDelim, "|"))
-      addstr ("\342\224\202");
     else
       addstr (NONULL (SidebarDelim));
   }