diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-19 17:20:00 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-19 17:20:00 -0500 |
| commit | e8fc13630c2fb67d75325e72ba66a811d3c1f4c9 (patch) | |
| tree | a6b34805173449d360cfb610128fdd74570d40ba /modules/controlcenter/appearance | |
| parent | refactor: created pane registry (diff) | |
| download | caelestia-shell-e8fc13630c2fb67d75325e72ba66a811d3c1f4c9.tar.gz caelestia-shell-e8fc13630c2fb67d75325e72ba66a811d3c1f4c9.tar.bz2 caelestia-shell-e8fc13630c2fb67d75325e72ba66a811d3c1f4c9.zip | |
refactor: SettingsHeader on all panels
Diffstat (limited to 'modules/controlcenter/appearance')
| -rw-r--r-- | modules/controlcenter/appearance/AppearancePane.qml | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/modules/controlcenter/appearance/AppearancePane.qml b/modules/controlcenter/appearance/AppearancePane.qml index 2041bf8..3ba0549 100644 --- a/modules/controlcenter/appearance/AppearancePane.qml +++ b/modules/controlcenter/appearance/AppearancePane.qml @@ -97,19 +97,9 @@ Item { anchors.top: parent.top spacing: Appearance.spacing.normal - MaterialIcon { - Layout.alignment: Qt.AlignHCenter | Qt.AlignTop - Layout.topMargin: 0 - text: "palette" - font.pointSize: Appearance.font.size.extraLarge * 3 - font.bold: true - } - - StyledText { - Layout.alignment: Qt.AlignHCenter - text: qsTr("Appearance Settings") - font.pointSize: Appearance.font.size.large - font.bold: true + SettingsHeader { + icon: "palette" + title: qsTr("Appearance Settings") } StyledText { |