Merge branch 'fix-duplicate-lines' of hiasen/htop

This commit is contained in:
Daniel Lange 2021-02-17 15:19:28 +01:00
commit e0dec39203
1 changed files with 6 additions and 2 deletions

View File

@ -145,8 +145,10 @@ void InfoScreen_run(InfoScreen* this) {
break;
case KEY_F(5):
clear();
if (As_InfoScreen(this)->scan)
if (As_InfoScreen(this)->scan) {
Vector_prune(this->lines);
InfoScreen_scan(this);
}
InfoScreen_draw(this);
break;
@ -161,8 +163,10 @@ void InfoScreen_run(InfoScreen* this) {
break;
case KEY_RESIZE:
Panel_resize(panel, COLS, LINES - 2);
if (As_InfoScreen(this)->scan)
if (As_InfoScreen(this)->scan) {
Vector_prune(this->lines);
InfoScreen_scan(this);
}
InfoScreen_draw(this);
break;