From 3b55537ff2522c528827d5f0bae4b1ed90ac7ca5 Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Sun, 21 Feb 2021 22:20:40 -0500 Subject: [PATCH] [notifications] HACK fix width --- applets/notifications/package/contents/ui/global/Globals.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/notifications/package/contents/ui/global/Globals.qml b/applets/notifications/package/contents/ui/global/Globals.qml index 45b0e34eb..0792247b8 100644 --- a/applets/notifications/package/contents/ui/global/Globals.qml +++ b/applets/notifications/package/contents/ui/global/Globals.qml @@ -180,7 +180,7 @@ QtObject { // Make it wider when on the top or the bottom center, since there's more horizontal // space available without looking weird // On mobile however we don't really want to have larger notifications - property int popupWidth: (popupLocation & Qt.AlignHCenter) && !Kirigami.Settings.isMobile ? PlasmaCore.Units.gridUnit * 22 : PlasmaCore.Units.gridUnit * 18 + property int popupWidth:818 // (popupLocation & Qt.AlignHCenter) && !Kirigami.Settings.isMobile ? PlasmaCore.Units.gridUnit * 22 : PlasmaCore.Units.gridUnit * 18 property int popupEdgeDistance: PlasmaCore.Units.largeSpacing * 2 // Reduce spacing between popups when centered so the stack doesn't intrude into the // view as much