diff --git a/interface/resources/icons/loading.gif b/interface/resources/icons/loading.gif deleted file mode 100644 index 2ccf9b4bf5..0000000000 Binary files a/interface/resources/icons/loading.gif and /dev/null differ diff --git a/interface/resources/icons/loadingDark.gif b/interface/resources/icons/loadingDark.gif new file mode 100644 index 0000000000..1fc22dc637 Binary files /dev/null and b/interface/resources/icons/loadingDark.gif differ diff --git a/scripts/system/html/js/SnapshotReview.js b/scripts/system/html/js/SnapshotReview.js index 3e5ee5bff5..a6f7e3ef91 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/loading.gif' }); + message.action.unshift({ localPath: '../../../resources/icons/loadingDark.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,