seperate adjust

This commit is contained in:
Julian Freeman
2026-01-19 00:41:28 -04:00
parent de0ed2bdc2
commit 3e5d5aa848
5 changed files with 76 additions and 35 deletions

View File

@@ -78,19 +78,21 @@ const store = useGalleryStore();
<!-- Placement Mode -->
<div class="flex flex-col gap-2">
<label class="text-sm text-gray-400 uppercase tracking-wider font-semibold">Placement</label>
<label class="text-sm text-gray-400 uppercase tracking-wider font-semibold">Placement Status</label>
<div class="flex items-center gap-2 p-2 rounded bg-gray-700/50 border border-gray-600">
<div class="p-1 rounded bg-green-500/20 text-green-400">
<CheckSquare class="w-4 h-4" v-if="!store.watermarkSettings.manual_override" />
<CheckSquare class="w-4 h-4" v-if="!store.selectedImage?.manualPosition" />
<div class="w-4 h-4" v-else></div>
</div>
<div class="flex-1">
<p class="text-sm font-medium text-gray-200">Smart Auto-Placement</p>
<p class="text-xs text-gray-500">Uses ZCA algorithm for each image</p>
<p class="text-sm font-medium text-gray-200" v-if="!store.selectedImage?.manualPosition">Auto (ZCA)</p>
<p class="text-sm font-medium text-blue-300" v-else>Manual Override</p>
<p class="text-xs text-gray-500" v-if="!store.selectedImage?.manualPosition">Using smart algorithm</p>
<p class="text-xs text-gray-500" v-else>Specific position set</p>
</div>
</div>
<p class="text-xs text-gray-500 mt-1 italic">
* Dragging the watermark in the preview will enable Manual Override for all images.
* Drag the watermark on the image to set a manual position for that specific image.
</p>
</div>
</div>