Sort Bookmarked after Recording models
This commit is contained in:
parent
292c572175
commit
64ddf4977e
|
@ -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