diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-07 17:05:45 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-07 17:05:45 +1000 |
| commit | d7e3be861f25b66b425587880171b4a7f7fd7eba (patch) | |
| tree | 25bb8957b9689350aee3bbef5928fb1935c2f673 /modules/controlcenter/bluetooth/Settings.qml | |
| parent | controlcenter: add header when floating (diff) | |
| download | caelestia-shell-d7e3be861f25b66b425587880171b4a7f7fd7eba.tar.gz caelestia-shell-d7e3be861f25b66b425587880171b4a7f7fd7eba.tar.bz2 caelestia-shell-d7e3be861f25b66b425587880171b4a7f7fd7eba.zip | |
internal: fix transparent transitions
Diffstat (limited to 'modules/controlcenter/bluetooth/Settings.qml')
| -rw-r--r-- | modules/controlcenter/bluetooth/Settings.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/controlcenter/bluetooth/Settings.qml b/modules/controlcenter/bluetooth/Settings.qml index f298432..f2801a0 100644 --- a/modules/controlcenter/bluetooth/Settings.qml +++ b/modules/controlcenter/bluetooth/Settings.qml @@ -426,7 +426,7 @@ ColumnLayout { implicitHeight: editIcon.implicitHeight + Appearance.padding.smaller * 2 radius: root.session.bt.editingAdapterName ? Appearance.rounding.small : implicitHeight / 2 - color: root.session.bt.editingAdapterName ? Colours.palette.m3primary : "transparent" + color: Qt.alpha(Colours.palette.m3primary, root.session.bt.editingAdapterName ? 1 : 0) StateLayer { color: root.session.bt.editingAdapterName ? Colours.palette.m3onPrimary : Colours.palette.m3onSurface |