This commit is contained in:
syuilo 2025-06-02 15:09:14 +09:00
parent 74a0ef7053
commit 2226aedb69
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@
- -
### Client ### Client
- - Feat: 画像にウォーターマークを付与できるようになりました
### Server ### Server
- -

View File

@ -292,6 +292,7 @@ function showMenu(ev: MouseEvent, item: typeof items.value[0]) {
}); });
} }
/*
if (IMAGE_EDITING_SUPPORTED_TYPES.includes(item.file.type) && !item.preprocessing && !item.uploading && !item.uploaded) { if (IMAGE_EDITING_SUPPORTED_TYPES.includes(item.file.type) && !item.preprocessing && !item.uploading && !item.uploaded) {
menu.push({ menu.push({
icon: 'ti ti-sparkles', icon: 'ti ti-sparkles',
@ -317,6 +318,7 @@ function showMenu(ev: MouseEvent, item: typeof items.value[0]) {
}, },
}); });
} }
*/
if (WATERMARK_SUPPORTED_TYPES.includes(item.file.type) && !item.preprocessing && !item.uploading && !item.uploaded) { if (WATERMARK_SUPPORTED_TYPES.includes(item.file.type) && !item.preprocessing && !item.uploading && !item.uploaded) {
function changeWatermarkPreset(presetId: string | null) { function changeWatermarkPreset(presetId: string | null) {