Update RecursiveFolder.svelte

This commit is contained in:
Classic298
2025-06-21 21:58:14 +02:00
committed by GitHub
parent 5d1e50c302
commit c245a6316f

View File

@@ -47,6 +47,7 @@
export let parentDragged = false;
let folderElement;
let folderMenuShow = false;
let draggedOver = false;
let dragged = false;
@@ -373,7 +374,16 @@
exportHandler();
}}
>
<button class="p-0.5 dark:hover:bg-gray-850 hover:bg-gray-200 rounded-lg touch-auto">
<button
class="p-0.5 dark:hover:bg-gray-850 hover:bg-gray-200 rounded-lg touch-auto"
on:click={(e) => {
e.stopPropagation();
folderMenuShow = !folderMenuShow;
}}
on:pointerup={(e) => {
e.stopPropagation();
}}
>
<EllipsisHorizontal className="size-4" strokeWidth="2.5" />
</button>
</FolderMenu>