refactor(bar): Use ternary operator for scaling property

This commit is contained in:
loner
2025-10-17 06:30:55 +08:00
parent ec5a60e92c
commit 9f46f8bed8
+1 -11
View File
@@ -13,17 +13,7 @@ Item {
property int sectionIndex: widgetProps && widgetProps.sectionWidgetIndex || 0
property string barDensity: "default"
readonly property real scaling: (function() {
switch (barDensity) {
case "mini":
return 0.8
case "compact":
return 0.9
case "comfortable":
default:
return 1.0
}
})()
readonly property real scaling: barDensity === "mini" ? 0.8 : (barDensity === "compact" ? 0.9 : 1.0)
// Don't reserve space unless the loaded widget is really visible
implicitWidth: getImplicitSize(loader.item, "implicitWidth")