Pequeña limpieza

This commit is contained in:
Somebody Master 2020-10-20 17:14:02 +02:00
parent 23ef201231
commit 659ede6d72
4 changed files with 0 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -98,11 +98,9 @@ void ui::showTopTitle(const vector<string> *titulo) {
WINDOW *topTitleWin = newwin(height + 3, g_maxCols - 4, 1, 2);
attron(A_BOLD);
box(topTitleWin, 0, 0);
// wrefresh(topTitleWin);
for (int i = 0; i < height; i++) {
mvwprintw(topTitleWin, i + 1, (g_maxCols - 4 - titulo->at(i).length()) / 2,
titulo->at(i).c_str());
// wattroff(topTitleWin, A_REVERSE);
}
attroff(A_BOLD);
wrefresh(topTitleWin);