Skip to content

Commit

Permalink
change from 25% to 66% for HTML build.
Browse files Browse the repository at this point in the history
  • Loading branch information
tberthel committed Jan 26, 2025
1 parent 326a6b3 commit ae4fda9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void loadImageForAnimation() throws Exception {
LazyImageRotationAnimation lazyImageRotationAnimation = null;
synchronized (lock) {
if(loadNowList.isEmpty()) {
if(!isHTML || !firstTime || totalLoaded > (this.loadList.size() / 4)) {
if(!isHTML || !firstTime || totalLoaded > (this.loadList.size() * 2 / 3)) {
//if(!firstTime) LogUtil.put(LogFactory.getInstance(new StringMaker().append("end with totalLoaded loaded: ").append(this.totalLoaded).append(" i:").append(this.loadList.size()).toString(), this, commonStrings.RUN));
final ProgressCanvas progressCanvas = ProgressCanvasFactory.getInstance();
progressCanvas.endIfPaintedSinceStart();
Expand Down

0 comments on commit ae4fda9

Please sign in to comment.