Sort site tab entries: Tracked->Bookmarked

This commit is contained in:
Jafea7 2025-09-11 22:18:27 +10:00
parent 48770e62d5
commit 113417c166
1 changed files with 4 additions and 0 deletions

View File

@ -686,6 +686,10 @@ public class ThumbOverviewTab extends Tab implements TabSelectionListener {
thumbs.remove(i); thumbs.remove(i);
thumbsToMove.add(0, thumb); thumbsToMove.add(0, thumb);
} }
if (recorder.isMarkedForLaterRecording(thumb.getModel())) {
thumbs.remove(i);
thumbsToMove.add(thumb);
}
} }
} }
thumbs.addAll(0, thumbsToMove); thumbs.addAll(0, thumbsToMove);