[gnome] Update extensions for v46

This commit is contained in:
2024-04-03 12:59:14 -04:00
parent 3fb1ec63ae
commit 7421cdba8f
251 changed files with 15759 additions and 3153 deletions

View File

@ -37,11 +37,11 @@ let _zoomAndFadeIn = function () {
let blur_effect = this.get_effect("appfolder-blur");
blur_effect.sigma = 0;
blur_effect.radius = 0;
blur_effect.brightness = 1.0;
Tweener.addTween(blur_effect,
{
sigma: sigma,
radius: sigma * 2,
brightness: brightness,
time: FOLDER_DIALOG_ANIMATION_TIME / 1000,
transition: 'easeOutQuad'
@ -85,7 +85,7 @@ let _zoomAndFadeOut = function () {
let blur_effect = this.get_effect("appfolder-blur");
Tweener.addTween(blur_effect,
{
sigma: 0,
radius: 0,
brightness: 1.0,
time: FOLDER_DIALOG_ANIMATION_TIME / 1000,
transition: 'easeInQuad'
@ -165,7 +165,7 @@ export const AppFoldersBlur = class AppFoldersBlur {
let blur_effect = new Shell.BlurEffect({
name: "appfolder-blur",
sigma: sigma,
radius: sigma * 2,
brightness: brightness,
mode: Shell.BlurMode.BACKGROUND
});