diff --git a/interface/resources/icons/loading.gif b/interface/resources/icons/loading.gif new file mode 100644 index 0000000000..2ccf9b4bf5 Binary files /dev/null and b/interface/resources/icons/loading.gif differ diff --git a/scripts/system/html/js/SnapshotReview.js b/scripts/system/html/js/SnapshotReview.js index 5406ed1ceb..3e5ee5bff5 100644 --- a/scripts/system/html/js/SnapshotReview.js +++ b/scripts/system/html/js/SnapshotReview.js @@ -84,7 +84,7 @@ window.onload = function () { if (messageOptions.containsGif) { if (messageOptions.processingGif) { imageCount = message.action.length + 1; // "+1" for the GIF that'll finish processing soon - message.action.unshift({ localPath: '../../../resources/icons/profilePicLoading.gif' }); + message.action.unshift({ localPath: '../../../resources/icons/loading.gif' }); message.action.forEach(addImage); document.getElementById('p0').disabled = true; // UX question: Should we also check the box at this point? Might lead to confusing behavior,