mirror of https://github.com/xzeldon/htop.git
Fix whitespace before comma in the new color definitions
This commit is contained in:
parent
8f2d129dce
commit
19868a3c29
20
CRT.c
20
CRT.c
|
@ -112,8 +112,8 @@ int CRT_colorSchemes[LAST_COLORSCHEME][LAST_COLORELEMENT] = {
|
|||
[PROCESS_D_STATE] = A_BOLD | ColorPair(Red, Black),
|
||||
[PROCESS_HIGH_PRIORITY] = ColorPair(Red, Black),
|
||||
[PROCESS_LOW_PRIORITY] = ColorPair(Green, Black),
|
||||
[PROCESS_NEW] = ColorPair(Black,Green),
|
||||
[PROCESS_TOMB] = ColorPair(Black,Red),
|
||||
[PROCESS_NEW] = ColorPair(Black, Green),
|
||||
[PROCESS_TOMB] = ColorPair(Black, Red),
|
||||
[PROCESS_THREAD] = ColorPair(Green, Black),
|
||||
[PROCESS_THREAD_BASENAME] = A_BOLD | ColorPair(Green, Black),
|
||||
[BAR_BORDER] = A_BOLD,
|
||||
|
@ -274,8 +274,8 @@ int CRT_colorSchemes[LAST_COLORSCHEME][LAST_COLORELEMENT] = {
|
|||
[PROCESS_D_STATE] = A_BOLD | ColorPair(Red, White),
|
||||
[PROCESS_HIGH_PRIORITY] = ColorPair(Red, White),
|
||||
[PROCESS_LOW_PRIORITY] = ColorPair(Green, White),
|
||||
[PROCESS_NEW] = ColorPair(White,Green),
|
||||
[PROCESS_TOMB] = ColorPair(White,Red),
|
||||
[PROCESS_NEW] = ColorPair(White, Green),
|
||||
[PROCESS_TOMB] = ColorPair(White, Red),
|
||||
[PROCESS_THREAD] = ColorPair(Blue, White),
|
||||
[PROCESS_THREAD_BASENAME] = A_BOLD | ColorPair(Blue, White),
|
||||
[BAR_BORDER] = ColorPair(Blue, White),
|
||||
|
@ -355,8 +355,8 @@ int CRT_colorSchemes[LAST_COLORSCHEME][LAST_COLORELEMENT] = {
|
|||
[PROCESS_D_STATE] = A_BOLD | ColorPair(Red, Black),
|
||||
[PROCESS_HIGH_PRIORITY] = ColorPair(Red, Black),
|
||||
[PROCESS_LOW_PRIORITY] = ColorPair(Green, Black),
|
||||
[PROCESS_NEW] = ColorPair(Black,Green),
|
||||
[PROCESS_TOMB] = ColorPair(Black,Red),
|
||||
[PROCESS_NEW] = ColorPair(Black, Green),
|
||||
[PROCESS_TOMB] = ColorPair(Black, Red),
|
||||
[PROCESS_THREAD] = ColorPair(Blue, Black),
|
||||
[PROCESS_THREAD_BASENAME] = A_BOLD | ColorPair(Blue, Black),
|
||||
[BAR_BORDER] = ColorPair(Blue, Black),
|
||||
|
@ -436,8 +436,8 @@ int CRT_colorSchemes[LAST_COLORSCHEME][LAST_COLORELEMENT] = {
|
|||
[PROCESS_D_STATE] = A_BOLD | ColorPair(Red, Blue),
|
||||
[PROCESS_HIGH_PRIORITY] = ColorPair(Red, Blue),
|
||||
[PROCESS_LOW_PRIORITY] = ColorPair(Green, Blue),
|
||||
[PROCESS_NEW] = ColorPair(Blue,Green),
|
||||
[PROCESS_TOMB] = ColorPair(Blue,Red),
|
||||
[PROCESS_NEW] = ColorPair(Blue, Green),
|
||||
[PROCESS_TOMB] = ColorPair(Blue, Red),
|
||||
[PROCESS_THREAD] = ColorPair(Green, Blue),
|
||||
[PROCESS_THREAD_BASENAME] = A_BOLD | ColorPair(Green, Blue),
|
||||
[BAR_BORDER] = A_BOLD | ColorPair(Yellow, Blue),
|
||||
|
@ -519,8 +519,8 @@ int CRT_colorSchemes[LAST_COLORSCHEME][LAST_COLORELEMENT] = {
|
|||
[PROCESS_D_STATE] = A_BOLD | ColorPair(Red, Black),
|
||||
[PROCESS_HIGH_PRIORITY] = ColorPair(Red, Black),
|
||||
[PROCESS_LOW_PRIORITY] = ColorPair(Green, Black),
|
||||
[PROCESS_NEW] = ColorPair(Black,Green),
|
||||
[PROCESS_TOMB] = ColorPair(Black,Red),
|
||||
[PROCESS_NEW] = ColorPair(Black, Green),
|
||||
[PROCESS_TOMB] = ColorPair(Black, Red),
|
||||
[BAR_BORDER] = A_BOLD | ColorPair(Green, Black),
|
||||
[BAR_SHADOW] = ColorPair(Cyan, Black),
|
||||
[SWAP] = ColorPair(Red, Black),
|
||||
|
|
Loading…
Reference in New Issue