diff --git a/Bar/Modules/Applauncher.qml b/Bar/Modules/Applauncher.qml index 50085c26..5c7cc67e 100644 --- a/Bar/Modules/Applauncher.qml +++ b/Bar/Modules/Applauncher.qml @@ -214,7 +214,7 @@ PanelWithOverlay { Rectangle { id: searchBar color: Theme.surfaceVariant - radius: 22 + radius: 20 height: 48 Layout.fillWidth: true border.color: searchField.activeFocus ? Theme.accentPrimary : Theme.outline diff --git a/Widgets/LockScreen/LockScreen.qml b/Widgets/LockScreen/LockScreen.qml index 8e19ff29..2eaf4795 100644 --- a/Widgets/LockScreen/LockScreen.qml +++ b/Widgets/LockScreen/LockScreen.qml @@ -240,7 +240,7 @@ WlSessionLock { width: parent.width * 0.8 height: 44 color: Theme.overlay - radius: 22 + radius: 20 visible: lock.errorMessage !== "" Text { @@ -258,7 +258,7 @@ WlSessionLock { Layout.alignment: Qt.AlignHCenter width: 120 height: 44 - radius: 22 + radius: 20 opacity: unlockButtonArea.containsMouse ? 0.8 : 0.5 color: unlockButtonArea.containsMouse ? Theme.accentPrimary : Theme.surface border.color: Theme.accentPrimary diff --git a/Widgets/Sidebar/Config/SettingsModal.qml b/Widgets/Sidebar/Config/SettingsModal.qml index 3b97f868..056f6f59 100644 --- a/Widgets/Sidebar/Config/SettingsModal.qml +++ b/Widgets/Sidebar/Config/SettingsModal.qml @@ -22,7 +22,7 @@ PanelWindow { Rectangle { anchors.fill: parent color: Theme.backgroundPrimary - radius: 24 + radius: 20 z: 0 ColumnLayout { diff --git a/Widgets/Sidebar/Panel/BluetoothPanel.qml b/Widgets/Sidebar/Panel/BluetoothPanel.qml index f87aa8fb..155f29f4 100644 --- a/Widgets/Sidebar/Panel/BluetoothPanel.qml +++ b/Widgets/Sidebar/Panel/BluetoothPanel.qml @@ -90,7 +90,7 @@ Item { Rectangle { anchors.fill: parent color: Theme.backgroundPrimary - radius: 24 + radius: 20 ColumnLayout { anchors.fill: parent diff --git a/Widgets/Sidebar/Panel/WallpaperPanel.qml b/Widgets/Sidebar/Panel/WallpaperPanel.qml index 4a69a0f3..0cf3166e 100644 --- a/Widgets/Sidebar/Panel/WallpaperPanel.qml +++ b/Widgets/Sidebar/Panel/WallpaperPanel.qml @@ -40,7 +40,7 @@ PanelWindow { Rectangle { anchors.fill: parent color: Theme.backgroundPrimary - radius: 24 + radius: 20 ColumnLayout { anchors.fill: parent anchors.margins: 32 diff --git a/Widgets/Sidebar/Panel/WifiPanel.qml b/Widgets/Sidebar/Panel/WifiPanel.qml index fc88e0c9..cdc6b300 100644 --- a/Widgets/Sidebar/Panel/WifiPanel.qml +++ b/Widgets/Sidebar/Panel/WifiPanel.qml @@ -482,7 +482,7 @@ Item { Rectangle { anchors.fill: parent color: Theme.backgroundPrimary - radius: 24 + radius: 20 ColumnLayout { anchors.fill: parent anchors.margins: 32 @@ -590,7 +590,7 @@ Item { anchors.fill: parent spacing: 4 boundsBehavior: Flickable.StopAtBounds - model: Object.values(wifiLogic.networks) + model: wifiLogic.networks ? Object.values(wifiLogic.networks) : null delegate: Item { id: networkEntry