Skip to content

Commit 7fb4d52

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 3a61af7 commit 7fb4d52

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
@@ -782,8 +782,8 @@ static Htop_Reaction actionHelp(State* st) {
782782
addbartext(CRT_colors[CPU_IOWAIT], "/", "io-wait");
783783
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
784784
} else {
785-
addbartext(CRT_colors[CPU_GUEST], "/", "guest");
786-
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
785+
addbartext(CRT_colors[CPU_GUEST], "/", "virtualized");
786+
addbartext(CRT_colors[BAR_SHADOW], " ", "used%");
787787
}
788788
addattrstr(CRT_colors[BAR_BORDER], "]");
789789

0 commit comments

Comments
 (0)