No need for 200ms delay now before auto-open

This commit is contained in:
Matt Pass
2019-08-12 23:56:13 +01:00
committed by GitHub
parent 9d8b695e35
commit 2f62574f9b

View File

@@ -97,8 +97,7 @@ var ICEcoder = {
top.ICEcoder.showHide('hide',top.get('loadingMask'));
top.ICEcoder.autoOpenInt = setInterval(function() {
if (top.ICEcoder.fmReady) {
// Delay auto open process by 200ms to give trial bar time to begin animation
if (top.ICEcoder.openLastFiles) {setTimeout(function() {top.ICEcoder.autoOpenFiles()},200);};
if (top.ICEcoder.openLastFiles) {top.ICEcoder.autoOpenFiles();};
clearInterval(top.ICEcoder.autoOpenInt);
}
}, 4);
@@ -4530,4 +4529,4 @@ var ICEcoder = {
}
}
};
};