Make the first tree item stable on expand / collapse again

Regression introduced with 06b1674
This commit is contained in:
Daniel Lange 2021-02-21 19:06:02 +01:00 committed by cgzones
parent 12c2337939
commit 07a6efcb22
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ void ProcessList_rebuildPanel(ProcessList* this) {
if (this->following == -1) {
/* If the last item was selected, keep the new last item selected */
if (currPos == currSize - 1)
if (currPos > 0 && currPos == currSize - 1)
Panel_setSelected(this->panel, Panel_size(this->panel) - 1);
else
Panel_setSelected(this->panel, currPos);