1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-10 07:42:09 -04:00

feat(bar): enlarge bar icons if widget background is off (#1425)

* use iconSizeLarge if noBackground is on

* widgets: pass noBackground to barIconSize in param
This commit is contained in:
Eggrror404
2026-01-21 23:44:08 +08:00
committed by GitHub
parent fd2c6a0784
commit eebb4827c4
26 changed files with 74 additions and 72 deletions

View File

@@ -112,7 +112,7 @@ BasePill {
DankIcon {
name: "storage"
size: Theme.barIconSize(root.barThickness)
size: Theme.barIconSize(root.barThickness, undefined, root.barConfig?.noBackground)
color: {
if (root.diskUsagePercent > 90) {
return Theme.tempDanger;
@@ -146,7 +146,7 @@ BasePill {
DankIcon {
name: "storage"
size: Theme.barIconSize(root.barThickness)
size: Theme.barIconSize(root.barThickness, undefined, root.barConfig?.noBackground)
color: {
if (root.diskUsagePercent > 90) {
return Theme.tempDanger;