Skip to content

Commit 5f62abd

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 f8f2d90 commit 5f62abd

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
@@ -744,8 +744,8 @@ static Htop_Reaction actionHelp(State* st) {
744744
addbartext(CRT_colors[CPU_IOWAIT], "/", "io-wait");
745745
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
746746
} else {
747-
addbartext(CRT_colors[CPU_GUEST], "/", "guest");
748-
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
747+
addbartext(CRT_colors[CPU_GUEST], "/", "virtualized");
748+
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
749749
}
750750
addattrstr(CRT_colors[BAR_BORDER], "]");
751751

0 commit comments

Comments
 (0)