From ce1fca0bf623346805cd1256f045ca3242a2437f Mon Sep 17 00:00:00 2001 From: zurdi Date: Sat, 20 Dec 2025 01:42:04 +0000 Subject: [PATCH] feat: update drop zone icons for ROM and patch file inputs --- frontend/src/views/Patcher.vue | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/frontend/src/views/Patcher.vue b/frontend/src/views/Patcher.vue index 1607ed557..ab8aa082f 100644 --- a/frontend/src/views/Patcher.vue +++ b/frontend/src/views/Patcher.vue @@ -286,11 +286,7 @@ const { isOverDropZone: isOverPatchDropZone } = useDropZone(patchDropZoneRef, { size="40" color="primary" > - {{ - isOverRomDropZone - ? "mdi-cloud-upload" - : "mdi-cloud-upload-outline" - }} + {{ isOverRomDropZone ? "mdi-file" : "mdi-file-outline" }}
Drop ROM here

@@ -371,8 +367,8 @@ const { isOverDropZone: isOverPatchDropZone } = useDropZone(patchDropZoneRef, { > {{ isOverPatchDropZone - ? "mdi-cloud-upload" - : "mdi-cloud-upload-outline" + ? "mdi-file-cog" + : "mdi-file-cog-outline" }}

Drop patch here