Skip to content

Commit

Permalink
Merge pull request #90 from chrisjunlee/master
Browse files Browse the repository at this point in the history
Fixes screen flickering on urxvt.
  • Loading branch information
raboof authored Jun 26, 2016
2 parents ef39290 + 4fbecbe commit a884d36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ void show_ncurses(Line *lines[], int nproc) {
getmaxyx(stdscr, rows, cols); /* find the boundaries of the screeen */

if (cols < 62) {
clear();
erase();
mvprintw(0, 0,
"The terminal is too narrow! Please make it wider.\nI'll wait...");
return;
Expand All @@ -307,7 +307,7 @@ void show_ncurses(Line *lines[], int nproc) {

proglen = cols - 55;

clear();
erase();
mvprintw(0, 0, "%s", caption->c_str());
attron(A_REVERSE);
mvprintw(2, 0,
Expand Down

0 comments on commit a884d36

Please sign in to comment.