Sort Bookmarked after Recording models
This commit is contained in:
parent
37eed1daca
commit
a7b4a99af3
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue