Small fixes [stage] [pre]

This commit is contained in:
crschnick 2024-02-25 10:10:35 +00:00
parent 1a7a3637e6
commit 5a125bce9b
2 changed files with 5 additions and 5 deletions

View file

@ -61,10 +61,10 @@ public class BrowserStatusBarComp extends SimpleComp {
|| model.getProgress().getValue().done()) {
return null;
} else {
return (model.getProgress().getValue().getName() != null
? model.getProgress().getValue().getName() + " "
: "")
+ transferredCount.getValue() + " / " + allCount.getValue();
var name = (model.getProgress().getValue().getName() != null
? " @ " + model.getProgress().getValue().getName() + " "
: "");
return transferredCount.getValue() + " / " + allCount.getValue() + name;
}
},
transferredCount,

View file

@ -1 +1 @@
8.0-10
8.0-11