diff options
author | Sven Eden <sven.eden@gmx.de> | 2013-04-09 07:50:11 +0200 |
---|---|---|
committer | Sven Eden <sven.eden@gmx.de> | 2013-04-09 07:50:11 +0200 |
commit | 2d3cfe269b26b5404589c9b3d12ff024f09bbc94 (patch) | |
tree | e5e5cf3c81f8a61131f2609af1929a0db6d8dfdb | |
parent | Safe USE_EXPAND_HIDDEN separaterly and merge them into USE_EXPAND if the form... (diff) | |
download | ufed-2d3cfe269b26b5404589c9b3d12ff024f09bbc94.tar.gz ufed-2d3cfe269b26b5404589c9b3d12ff024f09bbc94.tar.bz2 ufed-2d3cfe269b26b5404589c9b3d12ff024f09bbc94.zip |
Changed the colors of highlighted lines in the help screen to make them better recognizable.
-rw-r--r-- | ufed-curses-help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufed-curses-help.c b/ufed-curses-help.c index 7a9115d..7254a9d 100644 --- a/ufed-curses-help.c +++ b/ufed-curses-help.c @@ -303,7 +303,7 @@ static int drawline(sFlag* line, bool highlight) wattrset(win(List), COLOR_PAIR(5) | A_BOLD); } else { if (highlight) - wattrset(win(List), COLOR_PAIR(2) | A_BOLD | A_REVERSE); + wattrset(win(List), COLOR_PAIR(6) | A_BOLD); else wattrset(win(List), COLOR_PAIR(3)); } |