updateCurrentList() Method in GuiReplayCenter properly checks for Thread.interrupted() to avoid long freeze screens when switching Tab

This commit is contained in:
CrushedPixel
2015-07-05 01:51:38 +02:00
parent 5883dbc9be
commit d62e74a6f7

View File

@@ -491,6 +491,7 @@ public class GuiReplayCenter extends GuiScreen implements GuiYesNoCallback {
}
for(FileInfo i : pagination.getFiles()) {
if(Thread.interrupted()) break;
try {
File tmp = null;
if(i.hasThumbnail()) {