fix(properties): keep effect controls visible
This commit is contained in:
parent
26fb9b6a0b
commit
8fbc2939e3
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue