Sort site tab entries: Tracked->Bookmarked
This commit is contained in:
parent
48770e62d5
commit
113417c166
|
@ -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