1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00

Commented bold styles

This commit is contained in:
James Booth 2012-06-18 23:54:49 +01:00
parent d47dd2cb83
commit 69e7579aec
2 changed files with 7 additions and 7 deletions

View File

@ -61,7 +61,7 @@ void create_input_window(void)
inp_win = newwin(1, cols, rows-1, 0);
wbkgd(inp_win, COLOR_PAIR(1));
keypad(inp_win, TRUE);
wattrset(inp_win, A_BOLD);
// wattrset(inp_win, A_BOLD);
wmove(inp_win, 0, 1);
wrefresh(inp_win);
}

View File

@ -396,7 +396,7 @@ static void _create_windows(void)
_wins[0] = cons;
_cons_win = _wins[0].win;
wattrset(_cons_win, A_BOLD);
// wattrset(_cons_win, A_BOLD);
_win_show_time(_cons_win);
if (prefs_get_showsplash()) {
_print_splash_logo(_cons_win);
@ -416,7 +416,7 @@ static void _create_windows(void)
wbkgd(chat.win, COLOR_PAIR(1));
chat.y_pos = 0;
chat.paged = 0;
wattrset(chat.win, A_BOLD);
// wattrset(chat.win, A_BOLD);
scrollok(chat.win, TRUE);
_wins[i] = chat;
}
@ -497,9 +497,9 @@ static void _win_show_user(WINDOW *win, const char * const user, const int colou
static void _win_show_message(WINDOW *win, const char * const message)
{
wattroff(win, A_BOLD);
// wattroff(win, A_BOLD);
wprintw(win, "%s\n", message);
wattron(win, A_BOLD);
// wattron(win, A_BOLD);
}
static void _current_window_refresh(void)
@ -539,7 +539,7 @@ static void _show_status_string(WINDOW *win, const char * const from,
wattron(win, COLOR_PAIR(2));
} else {
wattron(win, COLOR_PAIR(5));
wattroff(win, A_BOLD);
// wattroff(win, A_BOLD);
}
wprintw(win, "%s %s", pre, from);
@ -558,7 +558,7 @@ static void _show_status_string(WINDOW *win, const char * const from,
wattroff(win, COLOR_PAIR(2));
} else {
wattroff(win, COLOR_PAIR(5));
wattron(win, A_BOLD);
// wattron(win, A_BOLD);
}
}