From 5e4496bdb2cff23957e12948d92a6f7c49d9f05a Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Tue, 4 Nov 2025 03:18:56 +0100 Subject: [PATCH 1/2] BluetoothPanel: add WordWrap for scanning text --- Modules/Bar/Bluetooth/BluetoothPanel.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/Bar/Bluetooth/BluetoothPanel.qml b/Modules/Bar/Bluetooth/BluetoothPanel.qml index 6255fe93..09a45d59 100644 --- a/Modules/Bar/Bluetooth/BluetoothPanel.qml +++ b/Modules/Bar/Bluetooth/BluetoothPanel.qml @@ -219,7 +219,9 @@ NPanel { text: I18n.tr("bluetooth.panel.pairing-mode") pointSize: Style.fontSizeM color: Color.mOnSurfaceVariant - Layout.alignment: Qt.AlignHCenter + horizontalAlignment: Text.AlignHCenter + Layout.fillWidth: true + wrapMode: Text.WordWrap } } } From 3acfbda10ac4034a2073ed1e2825393d5cf2631e Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Tue, 4 Nov 2025 08:50:07 -0500 Subject: [PATCH 2/2] CC-NightLight: fix right click --- Modules/ControlCenter/Widgets/NightLight.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/ControlCenter/Widgets/NightLight.qml b/Modules/ControlCenter/Widgets/NightLight.qml index 930a8f96..bccea9a6 100644 --- a/Modules/ControlCenter/Widgets/NightLight.qml +++ b/Modules/ControlCenter/Widgets/NightLight.qml @@ -1,6 +1,7 @@ import QtQuick.Layouts import Quickshell import qs.Commons +import qs.Modules.Settings import qs.Services import qs.Widgets