Increase thumb loading thread pool size from 10 to 30

This commit is contained in:
0xboobface 2018-11-30 13:44:13 +01:00
parent 918f63b1f5
commit 76657e2b92
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class ThumbCell extends StackPane {
private ObservableList<Node> thumbCellList; private ObservableList<Node> thumbCellList;
private boolean mouseHovering = false; private boolean mouseHovering = false;
private boolean recording = false; private boolean recording = false;
private static ExecutorService imageLoadingThreadPool = Executors.newFixedThreadPool(10); private static ExecutorService imageLoadingThreadPool = Executors.newFixedThreadPool(30);
public ThumbCell(ThumbOverviewTab parent, Model model, Recorder recorder) { public ThumbCell(ThumbOverviewTab parent, Model model, Recorder recorder) {
this.thumbCellList = parent.grid.getChildren(); this.thumbCellList = parent.grid.getChildren();