Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
f110ecda
Commit
f110ecda
authored
Nov 20, 2010
by
Hisham Muhammad
Browse files
Fix IO-wait color on "Black on White" scheme. Closes #3054717.
parent
45de5694
Changes
1
Hide whitespace changes
Inline
Side-by-side
CRT.c
View file @
f110ecda
...
...
@@ -334,7 +334,7 @@ void CRT_setColors(int colorScheme) {
CRT_colors
[
CPU_NICE
]
=
ColorPair
(
Cyan
,
White
);
CRT_colors
[
CPU_NORMAL
]
=
ColorPair
(
Green
,
White
);
CRT_colors
[
CPU_KERNEL
]
=
ColorPair
(
Red
,
White
);
CRT_colors
[
CPU_IOWAIT
]
=
A_BOLD
|
ColorPair
(
Black
,
Black
);
CRT_colors
[
CPU_IOWAIT
]
=
A_BOLD
|
ColorPair
(
Black
,
White
);
CRT_colors
[
CPU_IRQ
]
=
ColorPair
(
Blue
,
White
);
CRT_colors
[
CPU_SOFTIRQ
]
=
ColorPair
(
Blue
,
White
);
CRT_colors
[
CPU_STEAL
]
=
ColorPair
(
Cyan
,
White
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment