diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-13 08:11:27 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-13 08:11:27 -0500 |
| commit | 81203ba7bccdc367b03a40f492b99bfad0445bda (patch) | |
| tree | e524de91720b36fbf9c46033bbe5d873dd9a2aef /modules/controlcenter | |
| parent | tray: minor button updates to match (diff) | |
| download | caelestia-shell-81203ba7bccdc367b03a40f492b99bfad0445bda.tar.gz caelestia-shell-81203ba7bccdc367b03a40f492b99bfad0445bda.tar.bz2 caelestia-shell-81203ba7bccdc367b03a40f492b99bfad0445bda.zip | |
tray: changed settings icon in button
Diffstat (limited to 'modules/controlcenter')
| -rw-r--r-- | modules/controlcenter/network/SimpleButton.qml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/controlcenter/network/SimpleButton.qml b/modules/controlcenter/network/SimpleButton.qml index c949db3..00e5a4e 100644 --- a/modules/controlcenter/network/SimpleButton.qml +++ b/modules/controlcenter/network/SimpleButton.qml @@ -33,12 +33,6 @@ StyledRect { anchors.centerIn: parent spacing: Appearance.spacing.small - StyledText { - id: label - Layout.leftMargin: root.icon.length > 0 ? Appearance.padding.smaller : 0 - color: parent.parent.onColor - } - MaterialIcon { id: iconItem visible: root.icon.length > 0 @@ -46,6 +40,12 @@ StyledRect { color: root.onColor font.pointSize: Appearance.font.size.large } + + StyledText { + id: label + Layout.leftMargin: root.icon.length > 0 ? Appearance.padding.smaller : 0 + color: parent.parent.onColor + } } signal clicked |