fix(properties): keep effect controls visible

This commit is contained in:
Danila Poyarkov 2026-05-19 13:18:47 +03:00
parent 26fb9b6a0b
commit 8fbc2939e3
2 changed files with 3 additions and 2 deletions

View file

@ -5,7 +5,7 @@
### Fixes
- Fix the web font picker so Google Fonts remain available in Safari, local font access is requested on first open when supported, font sources are labeled, and Google font previews load lazily for visible rows.
- Fix background blur rendering so it blurs the backdrop behind a layer instead of applying a no-op content filter.
- Fix background blur rendering so it blurs the backdrop behind a layer instead of applying a no-op content filter, and keep effect parameter controls visible in the properties panel.
## 0.12.0 — 2026-05-18

View file

@ -85,7 +85,7 @@ const sectionCls = useSectionUI()
</button>
</div>
<div v-if="effectsCtx.expandedIndex.value === i" class="flex flex-col gap-1.5 py-1.5">
<div class="flex flex-col gap-1.5 py-1.5">
<template v-if="effectsCtx.isShadow(effect.type)">
<div class="flex items-center gap-1.5">
<ScrubInput
@ -158,6 +158,7 @@ const sectionCls = useSectionUI()
<template v-else>
<ScrubInput
class="w-24 flex-none"
icon="B"
:model-value="effect.radius"
:min="0"