From d17c5c830f64c2c25b9df1e15e1da2256c7df536 Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Tue, 27 Jan 2015 21:47:33 +0000 Subject: [PATCH] Better end user status --- src/com/sheepit/client/Client.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sheepit/client/Client.java b/src/com/sheepit/client/Client.java index 178c758..dc1bc31 100644 --- a/src/com/sheepit/client/Client.java +++ b/src/com/sheepit/client/Client.java @@ -701,7 +701,7 @@ public class Client { } protected int downloadSceneFile(Job ajob_) { - this.gui.status("Downloading scene"); + this.gui.status("Downloading project"); String archive_local_path = ajob_.getSceneArchivePath(); @@ -712,7 +712,7 @@ public class Client { int ret; String real_url; real_url = String.format("%s?type=job&job=%s&revision=%s", this.server.getPage("download-archive"), ajob_.getId(), ajob_.getRevision()); - ret = this.server.HTTPGetFile(real_url, archive_local_path, this.gui, "Downloading scene %s %%"); + ret = this.server.HTTPGetFile(real_url, archive_local_path, this.gui, "Downloading project %s %%"); if (ret != 0) { this.gui.error("Client::downloadSceneFile problem with Utils.DownloadFile returned " + ret); return -1;