From f21b847fc15e54866a27198d3a210246d2aba8b3 Mon Sep 17 00:00:00 2001 From: WanderingPenwing Date: Wed, 31 Jul 2024 23:26:26 +0200 Subject: [PATCH] changed background --- Components/Input.qml | 3 +++ Components/SessionButton.qml | 1 + Components/SystemButtons.qml | 1 + 3 files changed, 5 insertions(+) diff --git a/Components/Input.qml b/Components/Input.qml index dfbc3da..3cf60f2 100644 --- a/Components/Input.qml +++ b/Components/Input.qml @@ -75,6 +75,7 @@ Column { text: model.name font.pointSize: root.font.pointSize * 0.8 font.capitalization: Font.Capitalize + font.family: config.Font color: selectUser.highlightedIndex === index ? root.palette.highlight.hslLightness >= 0.7 ? "#16161E" : "white" : root.palette.window.hslLightness >= 0.8 ? root.palette.highlight.hslLightness >= 0.8 ? "#16161E" : root.palette.highlight : "white" verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter @@ -314,6 +315,7 @@ Column { horizontalAlignment: Text.AlignLeft anchors.left: indicator.right anchors.leftMargin: indicator.width / 2 + font.family: config.Font font.pointSize: root.font.pointSize * 0.8 color: root.palette.text } @@ -470,6 +472,7 @@ Column { text: parent.text color: config.OverrideLoginButtonTextColor != "" ? config.OverrideLoginButtonTextColor : root.palette.highlight.hslLightness >= 0.7 ? "#16161E" : "white" font.pointSize: root.font.pointSize + font.family: config.Font horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter opacity: 0.5 diff --git a/Components/SessionButton.qml b/Components/SessionButton.qml index c69cd13..9857a62 100644 --- a/Components/SessionButton.qml +++ b/Components/SessionButton.qml @@ -91,6 +91,7 @@ Item { anchors.left: parent.left anchors.leftMargin: 3 font.pointSize: root.font.pointSize * 0.8 + font.family: config.Font Keys.onReleased: parent.popup.open() } diff --git a/Components/SystemButtons.qml b/Components/SystemButtons.qml index 511470d..5f80180 100644 --- a/Components/SystemButtons.qml +++ b/Components/SystemButtons.qml @@ -44,6 +44,7 @@ RowLayout { RoundButton { text: modelData[1] + font.family: config.Font font.pointSize: root.font.pointSize * 0.8 Layout.alignment: Qt.AlignHCenter icon.source: modelData ? Qt.resolvedUrl("../Assets/" + modelData[0] + ".svgz") : ""