Fix: ui, set a global progress on the download

This commit is contained in:
Laurent Clouet
2024-04-11 15:24:50 +00:00
parent 50ddc9ae3f
commit 74b39797ce
8 changed files with 97 additions and 58 deletions

View File

@@ -30,8 +30,6 @@ public interface Gui {
public void status(String msg_, int progress);
public void status(String msg_, int progress, long size);
public void updateTrayIcon(Integer percentage_);
public void setRenderingProjectName(String name_);
@@ -57,4 +55,6 @@ public interface Gui {
public void setComputeMethod(String computeMethod_);
public Client getClient();
public DownloadProgress getDownloadProgress();
}