Merge pull request #2728 from rhysd/blur

Add option to make the transparent window blurry
This commit is contained in:
Héctor 2025-11-20 01:20:25 +01:00 committed by GitHub
commit e9317e7556
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View file

@ -41,6 +41,7 @@ pub fn window_attributes(
})
.with_decorations(settings.decorations)
.with_transparent(settings.transparent)
.with_blur(settings.blur)
.with_window_icon(settings.icon.and_then(icon))
.with_window_level(window_level(settings.level))
.with_visible(settings.visible);