1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-05-05 03:52:07 -04:00

bluetooth: fix codec parsing names

This commit is contained in:
bbedward
2026-05-04 12:09:49 -04:00
parent 50f0cbb122
commit 7c991bc4e3
2 changed files with 6 additions and 6 deletions

View File

@@ -172,7 +172,7 @@ Item {
}
property bool _blurRegistered: false
readonly property bool _shouldBlur: BlurService.enabled && blurBarWindow && blurBarWindow.registerBlurWidget && !(barConfig?.noBackground ?? false) && root.visible && root.width > 0
readonly property bool _shouldBlur: BlurService.enabled && !!blurBarWindow && !!blurBarWindow.registerBlurWidget && !(barConfig?.noBackground ?? false) && root.visible && root.width > 0
on_ShouldBlurChanged: _updateBlurRegistration()