From ef32603aed7a1ce475a73cbdb21ecc1ae3a31e7d Mon Sep 17 00:00:00 2001 From: Raushan Kumar Pandey Date: Wed, 2 Sep 2020 01:30:42 +0530 Subject: Update ui.js Tweener has been removed from gnome-shell. This changes fixes the issue in gnome 3.38 Gbp-Pq: Name Update-ui.js.patch --- ui.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/ui.js b/ui.js index 5b703fa..ea3354b 100644 --- a/ui.js +++ b/ui.js @@ -18,7 +18,6 @@ const Clutter = imports.gi.Clutter; const GObject = imports.gi.GObject; const St = imports.gi.St; -const Tweener = imports.ui.tweener; const PopupMenu = imports.ui.popupMenu; const Config = imports.misc.config; @@ -79,21 +78,19 @@ var PopupBluetoothDeviceMenuItem = GObject.registerClass( }); button.connect("enter-event", (widget) => { - Tweener.addTween( - widget.child, { + widget.child.ease( { opacity: 255, time: 0.05, - transition: 'linear' + transition: Clutter.AnimationMode.LINEAR } ); }); button.connect("leave-event", (widget) => { - Tweener.addTween( - widget.child, { + widget.child.ease( { opacity: 155, time: 0.05, - transition: 'linear' + transition: Clutter.AnimationMode.LINEAR } ); }); -- cgit v1.2.3