diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-20 13:30:38 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-20 13:30:38 -0500 |
| commit | a2b00d4a0ea90b84e60159140cb56355cddc3058 (patch) | |
| tree | 6d04d6b69ba07b5dbffc1886dd74794408dd1e7c | |
| parent | controlcenter: wallpaper now uses gridview, removed custom lazy loading (diff) | |
| download | caelestia-shell-a2b00d4a0ea90b84e60159140cb56355cddc3058.tar.gz caelestia-shell-a2b00d4a0ea90b84e60159140cb56355cddc3058.tar.bz2 caelestia-shell-a2b00d4a0ea90b84e60159140cb56355cddc3058.zip | |
controlcenter: corrected background transparency on tooltips
| -rw-r--r-- | components/controls/Tooltip.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/controls/Tooltip.qml b/components/controls/Tooltip.qml index bab8086..d665083 100644 --- a/components/controls/Tooltip.qml +++ b/components/controls/Tooltip.qml @@ -45,6 +45,7 @@ Popup { closePolicy: Popup.NoAutoClose padding: 0 margins: 0 + background: Item {} // Update position when target moves or tooltip becomes visible onTooltipVisibleChanged: { @@ -141,6 +142,7 @@ Popup { color: Colours.palette.m3surfaceContainerHighest radius: Appearance.rounding.small + antialiasing: true // Add elevation for depth Elevation { |