Remove force sort order to ASC when returning to tree mode

Bug found by BenBE via IRC
This commit is contained in:
Daniel Lange 2021-02-07 13:46:57 +01:00
parent 0d67263b36
commit e86acd6893
1 changed files with 0 additions and 3 deletions

View File

@ -226,9 +226,6 @@ static Htop_Reaction actionToggleMergedCommand(State* st) {
static Htop_Reaction actionToggleTreeView(State* st) {
st->settings->treeView = !st->settings->treeView;
if (st->settings->treeView) {
st->settings->treeDirection = 1;
}
ProcessList_expandTree(st->pl);
return HTOP_REFRESH | HTOP_SAVE_SETTINGS | HTOP_KEEP_FOLLOWING | HTOP_REDRAW_BAR | HTOP_UPDATE_PANELHDR;