diff --git a/Modules/Notifications/Sidebar/NotifGroup.qml b/Modules/Notifications/Sidebar/NotifGroup.qml index 14212d1..753944d 100644 --- a/Modules/Notifications/Sidebar/NotifGroup.qml +++ b/Modules/Notifications/Sidebar/NotifGroup.qml @@ -166,7 +166,7 @@ CustomRect { CustomRect { color: root.urgency === NotificationUrgency.Critical ? DynamicColors.palette.m3error : DynamicColors.layer(DynamicColors.palette.m3surfaceContainerHigh, 3) - implicitHeight: groupCount.implicitHeight + 10 + implicitHeight: groupCount.implicitHeight + Appearance.padding.small implicitWidth: expandBtn.implicitWidth + 7 * 2 radius: Appearance.rounding.full @@ -196,7 +196,7 @@ CustomRect { MaterialIcon { Layout.rightMargin: -10 / 2 - Layout.topMargin: root.expanded ? -Math.floor(7 / 2) : 0 + // Layout.topMargin: root.expanded ? -Math.floor(7 / 2) : 0 color: root.urgency === NotificationUrgency.Critical ? DynamicColors.palette.m3onError : DynamicColors.palette.m3onSurface rotation: root.expanded ? 180 : 0 text: "expand_more" diff --git a/Modules/Notifications/Sidebar/NotifGroupList.qml b/Modules/Notifications/Sidebar/NotifGroupList.qml index a04c3d8..28afd99 100644 --- a/Modules/Notifications/Sidebar/NotifGroupList.qml +++ b/Modules/Notifications/Sidebar/NotifGroupList.qml @@ -64,16 +64,16 @@ LazyListView { } Behavior on x { Anim { - duration: Appearance.anim.durations.expressiveDefaultSpatial - easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial + duration: MaterialEasing.expressiveEffectsTime + easing.bezierCurve: MaterialEasing.expressiveEffects } } Behavior on y { enabled: notif.LazyListView.ready Anim { - duration: Appearance.anim.durations.expressiveDefaultSpatial - easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial + duration: MaterialEasing.expressiveEffectsTime + easing.bezierCurve: MaterialEasing.expressiveEffects } } diff --git a/shell.qml b/shell.qml index 7f61013..92e91f9 100644 --- a/shell.qml +++ b/shell.qml @@ -4,6 +4,7 @@ //@ pragma Env QSG_USE_SIMPLE_ANIMATION_DRIVER=0 //@ pragma Env QS_NO_RELOAD_POPUP=1 //@ pragma Env QT_SCALE_FACTOR_ROUNDING_POLICY=Round +//@ pragma DropExpensiveFonts import Quickshell import qs.Modules import qs.Modules.Wallpaper