Switched to qmlformat.

This commit is contained in:
ItsLemmy
2025-11-16 17:07:03 -05:00
parent 32905224b9
commit 3ff5b7639f
223 changed files with 9970 additions and 9658 deletions
+3 -3
View File
@@ -10,11 +10,11 @@ Text {
property real pointSize: Style.fontSizeM
property bool applyUiScale: true
property real fontScale: {
const fontScale = (root.family === Settings.data.ui.fontDefault ? Settings.data.ui.fontDefaultScale : Settings.data.ui.fontFixedScale)
const fontScale = (root.family === Settings.data.ui.fontDefault ? Settings.data.ui.fontDefaultScale : Settings.data.ui.fontFixedScale);
if (applyUiScale) {
return fontScale * Style.uiScaleRatio
return fontScale * Style.uiScaleRatio;
}
return fontScale
return fontScale;
}
font.family: root.family