From 0ccdb4746fedfba4b64aa5e432c49e832271c98b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 May 2021 14:59:18 +0200 Subject: [PATCH] appDisplay: Extend faded edges beyond fade area Now that the fade effect was reverted to the old behavior by default, the app grid must opt-in extend faded edges beyond the regular fade area. Part-of: --- js/ui/appDisplay.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index b926aab98..2086102b4 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -364,6 +364,9 @@ var BaseAppView = GObject.registerClass({ } this._scrollView.update_fade_effect(fadeMargin); + const effect = this._scrollView.get_effect('fade'); + if (effect) + effect.extend_fade_area = true; } _updateFade() {