UX: move theme pages above selectedElement, fix #2144

This commit is contained in:
Pieter Vander Vennet 2024-09-16 15:12:05 +02:00
parent 9faaad063d
commit d6f0e01067
2 changed files with 5 additions and 5 deletions

View file

@ -44,7 +44,7 @@
import DrawerLeft from "./Base/DrawerLeft.svelte"
import Hash from "../Logic/Web/Hash"
import { Drawer } from "flowbite-svelte"
import { linear, sineIn } from "svelte/easing"
import { linear } from "svelte/easing"
export let state: ThemeViewState
let layout = state.layout
@ -418,7 +418,6 @@
<MenuDrawer onlyLink={true} {state} />
</div>
</DrawerLeft>
<MenuDrawer onlyLink={false} {state} />
{#if $selectedElement !== undefined && $selectedLayer !== undefined && !$selectedLayer.popupInFloatover}
<!-- right modal with the selected element view -->
@ -472,4 +471,6 @@
{/if}
{/if}
<MenuDrawer onlyLink={false} {state} />
</main>