Skip to content

Commit b428a81

Browse files
committed
Restore "virtualized" word for non-detailed CPU meter in help screen
The time displayed is (steal+guest), not just guest CPU time. Regression from 3d8fa0b Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
1 parent 2947ef9 commit b428a81

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Action.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,8 +804,8 @@ static Htop_Reaction actionHelp(State* st) {
804804
addbartext(CRT_colors[CPU_IOWAIT], "/", "io-wait");
805805
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
806806
} else {
807-
addbartext(CRT_colors[CPU_GUEST], "/", "guest");
808-
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
807+
addbartext(CRT_colors[CPU_GUEST], "/", "virtualized");
808+
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
809809
}
810810
addattrstr(CRT_colors[BAR_BORDER], "]");
811811

0 commit comments

Comments
 (0)