Colors: removed Colors.transparent / black and white in favor of their direct shorthands

This commit is contained in:
Lemmy
2026-01-04 13:54:51 -05:00
parent b2175a5f48
commit 3bc9a625b8
78 changed files with 173 additions and 192 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ PopupWindow {
implicitWidth: menuContentWidth + (Style.marginM * 2)
implicitHeight: contextMenuColumn.implicitHeight + (Style.marginM * 2)
color: Color.transparent
color: "transparent"
visible: false
// Hidden text element for measuring text width
@@ -360,7 +360,7 @@ PopupWindow {
Rectangle {
Layout.fillWidth: true
height: 32
color: root.hoveredItem === index ? Color.mHover : Color.transparent
color: root.hoveredItem === index ? Color.mHover : "transparent"
radius: Style.radiusXS
Row {