diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:15:50 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-15 00:15:50 -0500 |
| commit | b1e5660c568a59af115acc2da1bca86c36a59efc (patch) | |
| tree | 2829c963fbd1fd904b97ce4794d5e08dbb30edd5 /modules/controlcenter/network | |
| parent | tray: wireless password popout, no more full-rounding buttons (diff) | |
| download | caelestia-shell-b1e5660c568a59af115acc2da1bca86c36a59efc.tar.gz caelestia-shell-b1e5660c568a59af115acc2da1bca86c36a59efc.tar.bz2 caelestia-shell-b1e5660c568a59af115acc2da1bca86c36a59efc.zip | |
tray: open settings button matches other popouts
Diffstat (limited to 'modules/controlcenter/network')
| -rw-r--r-- | modules/controlcenter/network/SimpleButton.qml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/controlcenter/network/SimpleButton.qml b/modules/controlcenter/network/SimpleButton.qml index 7d85e4f..a73f751 100644 --- a/modules/controlcenter/network/SimpleButton.qml +++ b/modules/controlcenter/network/SimpleButton.qml @@ -15,7 +15,7 @@ StyledRect { property string icon: "" implicitWidth: rowLayout.implicitWidth + Appearance.padding.normal * 2 - implicitHeight: rowLayout.implicitHeight + Appearance.padding.small + implicitHeight: rowLayout.implicitHeight + Appearance.padding.small * 2 radius: Appearance.rounding.normal StateLayer { @@ -38,12 +38,10 @@ StyledRect { visible: root.icon.length > 0 text: root.icon 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 } } |