Sort Bookmarked after Recording models

This commit is contained in:
Jafea7 2025-09-11 22:18:05 +10:00
parent 37eed1daca
commit a7b4a99af3
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);
thumbsToMove.add(0, thumb);
}
if (recorder.isMarkedForLaterRecording(thumb.getModel())) {
thumbs.remove(i);
thumbsToMove.add(thumb);
}
}
}
thumbs.addAll(0, thumbsToMove);